|
|
@@ -4,10 +4,24 @@ namespace App\Models;
|
|
|
|
|
|
use App\Constants\Util;
|
|
|
|
|
|
+/**
|
|
|
+ * @property string $activity_id
|
|
|
+ * @property string $finish_time
|
|
|
+ * @property string member_id
|
|
|
+ * @property string title
|
|
|
+ * @property string status
|
|
|
+ * @property string sub_title
|
|
|
+ * @property string detail_image
|
|
|
+ * @property string start_time
|
|
|
+ * @property string end_time
|
|
|
+ * @property string part_in_time
|
|
|
+ *
|
|
|
+ */
|
|
|
class ActivityUser extends BaseModel
|
|
|
{
|
|
|
protected $table = 'activity_user';
|
|
|
- protected $fillable = ['activity_id', 'finish_time', 'member_id', 'title', 'status', 'sub_title', 'detail_image', 'start_time', 'end_time', 'part_in_time'];
|
|
|
+ protected $fillable = ['activity_id', 'finish_time', 'member_id', 'title', 'status', 'sub_title', 'detail_image',
|
|
|
+ 'start_time', 'end_time', 'part_in_time'];
|
|
|
|
|
|
protected function getDetailImageAttribute($value)
|
|
|
{
|