OrderImportFromC.php 586 B

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