1234567891011121314151617 |
- <?php
- declare (strict_types = 1);
- namespace app\model;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class ComonOrder extends Model
- {
- protected $connection='mysql_cxinv';
- protected $createTime="addtime";
- protected $updateTime="updatetime";
-
- }
|