GoodStockInfo.php 531 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. class GoodStockInfo extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'stockid' =>'bigint',//库存id
  9. 'bnCode' =>'varchar',//bn编号
  10. 'total_num' =>'int',//总数
  11. 'used_num' =>'int',//已用数量
  12. 'balance_num' =>'int',//可用数量
  13. 'origin_price' =>'decimal',//成本价格
  14. 'addtime' =>'datetime',//
  15. 'updatetime' =>'datetime',//
  16. ];
  17. }