YzTag.php 371 B

123456789101112131415161718
  1. <?php
  2. namespace app\youzan\model;
  3. use think\Model;
  4. //有赞标签表
  5. class YzTag extends Model
  6. {
  7. protected $connection = 'mysql_yz';//切换连接参数
  8. protected $table = 'yz_tag';
  9. protected $pk = 'id';
  10. protected $autoWriteTimestamp = false;
  11. public static $is_del_normal = 0;//状态:正常
  12. public static $is_del_delete = 1;//状态:删除
  13. }