1234567891011121314151617181920212223 |
- <?php
- namespace app\common\model;
- use think\Model;
- class SubscripUserRelation extends Model
- {
- // 表名
- protected $table = 'subscrip_user_relation';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
- // 定义时间戳字段名
- protected $createTime = false;
- protected $updateTime = false;
- protected $connection = 'polardb';
- }
|