9.29
- 合同总制令表 (sum)
字段名 |
数据类型 |
ContractID |
Int主键 |
ContractNumber |
Varchar |
CustomerID |
Int |
CreateDate |
Datetime |
Money |
Int |
2. 分制令表 (suborder)
字段名 |
数据类型 |
SubOrderID |
Int,主键 |
ContractID |
Int |
ProductID |
Int |
Quantity |
Int |
3. 子制令表 (ChildOrder)
字段名 |
数据类型 |
ChildOrderID |
Int主键 |
SubOrderID |
Int |
ProductBatchID |
Int |
Quantity |
Int |
QRCode |
Varchar |
4. 产品批次表 (`ProductBatch`)
字段名 |
数据类型 |
ProductBatchID |
Int主键 |
ChildOrderID |
Int |
BatchNumber |
Varchar |
ProductionStatus |
Varchar |
Createate |
Datetime |
5. 库存表 (store)
字段名 |
数据类型 |
StoreID |
Int主键 |
ProductID |
Int外键 |
Quantity |
Int |
WarehouseID |
Int |
6. 在制品表 (Progress)
字段名 |
数据类型 |
ProgressID |
Int主键 |
ChildOrderID |
Int外键 |
Quantity |
Int |
WorkStationID |
Int |
7. 考核表 (Evaluation)
字段名 |
数据类型 |
EvaluationID |
Int主键 |
EmployeeID |
Interesting外键 |
CompletionRate |
Int |
ClearanceRate |
Int |
CreateDate |
Int |