FhdChild.php 501 B

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