ComplexRoleModel.php 389 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 渠道-角色数据表
  5. * @author Administrator
  6. */
  7. class ComplexRoleModel extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'nw_complex_role';
  11. protected $autoWriteTimestamp = true;
  12. protected $createTime = 'create_time';
  13. protected $updateTime = 'update_time';
  14. protected $dateFormat = 'Y-m-d H:i:s';
  15. }