OutCgd.php 349 B

123456789101112131415
  1. <?php
  2. namespace app\admin\model;
  3. class OutCgd extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'outCode' =>'varchar',//发货单
  9. 'cgdNo' =>'varchar',//采购单哈
  10. 'send_num' =>'int',//发货数量
  11. 'status' =>'tinyint',//发货单状态
  12. ];
  13. }