123456789101112131415161718192021222324 |
- <?php
- namespace app\admin\model;
- use think\Model;
- //C端订单导入表
- class OrderImportFromC extends Model
- {
- protected $table = 'wsm_order_import_from_c';
- protected $pk = 'id';
- protected $autoWriteTimestamp = false;
- public static $is_del_normal = 0;
- public static $is_del_delete = 1;
- public static $status_wait_validate = 1;//系统验证数据中
- public static $status_wait_confirm = 2;//待确认订单信息
- public static $status_wait_relation = 3;//信息已确认待关联库存
- public static $status_success = 4;//订单录入成功
- }
|