123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace app\admin\model;
- use think\Model;
- use app\admin\model\MobileFlowArea;
- class MobileFlowAreaTemplate extends Model
- {
- // 表名
- protected $table = 'mobile_flow_area_template';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'create_time';
- protected $updateTime = 'update_time';
- protected $deleteTime = false;
- protected $dateFormat = 'Y-m-d H:i:s';
- // 追加属性
- protected $append = [
- ];
-
- public static $status = [
- '正常',
- '禁用'
- ];
- public function area(){
- return $this->hasMany(MobileFlowArea::class, 'template_id', 'id');
- }
- public function admin(){
- return $this->hasOne(Admin::class,'id','proxy_id');
- }
- }
|