12345678910111213141516 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\model;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class FhdChild extends Model
- {
- public static $order_source=[1 => '直接下单', 2 => '咨询', 3 => '项目', 4 => '平台', 5 => '有赞', 6 => '售后补换货', 7 => '报备转单',
- 8 => '支付渠道', 9 => '采销录单',10 => '结算录单', 11 => '业务报备单',];
- public static $order_type=[1=>'库存商品',2=>'非库存商品',3=>'咨询商品',4=>'报备商品'];
- }
|