12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- namespace JinDouYun\Dao\Stock;
- use JinDouYun\Dao\BaseDao;
- class DPicking extends BaseDao
- {
- public function __construct($serviceDB = 'stock')
- {
- $this->_table = 'order';
- $this->_primary = 'id';
- $this->_fields = [
- 'id',
- 'no',
- 'shopId',
- 'shopName',
- 'merchantId',
- 'originId',
- 'originNo',
- 'warehouseId',
- 'warehouseName',
- 'personnel',
- 'personnelName',
- 'currentUnitId',
- 'currentUnit',
- 'sort',
- 'number',
- 'goodsLine',
- 'totalMoney',
- 'notPickingNum',
- 'pickingNum',
- 'outNum',
- 'notOutNum',
- 'outTime',
- 'deliveryType',
- 'address',
- 'managerId',
- 'managerName',
- 'pickingStatus',
- 'pickingType',
- 'remark',
- 'createTime',
- 'updateTime',
- 'extend',
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- $this->_update_autofill = [
- 'updateTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|