MobileFlowAreaTemplate.php 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use app\admin\model\MobileFlowArea;
  5. class MobileFlowAreaTemplate extends Model
  6. {
  7. // 表名
  8. protected $table = 'mobile_flow_area_template';
  9. // 自动写入时间戳字段
  10. protected $autoWriteTimestamp = 'int';
  11. // 定义时间戳字段名
  12. protected $createTime = 'create_time';
  13. protected $updateTime = 'update_time';
  14. protected $deleteTime = false;
  15. protected $dateFormat = 'Y-m-d H:i:s';
  16. // 追加属性
  17. protected $append = [
  18. ];
  19. public static $status = [
  20. '正常',
  21. '禁用'
  22. ];
  23. public function area(){
  24. return $this->hasMany(MobileFlowArea::class, 'template_id', 'id');
  25. }
  26. public function admin(){
  27. return $this->hasOne(Admin::class,'id','proxy_id');
  28. }
  29. }