12345678910111213141516171819202122232425 |
- <?php
- namespace app\admin\model;
- use think\Model;
- 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_stock_not_enough = 4;
- public static $status_success = 5;
- }
|