123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\youzan\model;
- use think\Model;
- //商品上线平台表
- class GoodPlatform extends Model
- {
- protected $table = 'wsm_good_platform';
- protected $pk = 'id';
- protected $autoWriteTimestamp = false;
- public static $del_normal = 0;//未删除
- public static $deleted = 1;//已删除
- public static $exam_status_0 = 0;//待提交
- public static $exam_status_1 = 1;//待完善成本
- public static $exam_status_2 = 2;//待产品审核
- public static $exam_status_3 = 3;//待财务定价
- public static $exam_status_4 = 4;//待财务审核定价
- public static $exam_status_5 = 5;//待上线
- public static $exam_status_6 = 6;//上线成功
- public static $exam_status_7 = 7;//审核失败
- public static $exam_status_8 = 8;//已下线
- public static $status_online_ing = 1;//有赞待上线(处理中)
- public static $status_online_success = 2;//有赞上线成功
- public static $status_online_fail = 3;//有赞上线失败
- public static $status_offline = 4;//有赞已下线
- }
|