123456789101112131415161718 |
- <?php
- namespace app\youzan\model;
- use think\Model;
- class YzTag extends Model
- {
- protected $connection = 'mysql_yz';
- protected $table = 'yz_tag';
- protected $pk = 'id';
- protected $autoWriteTimestamp = false;
- public static $is_del_normal = 0;
- public static $is_del_delete = 1;
- }
|