1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| /*
| * @Description:生产模块
| * @Version: 2.0
| * @Autor: wuyun
| * @Date: 2022-09-01 16:47:27
| * @LastEditors: wuyun
| * @LastEditTime: 2022-09-02 11:35:14
| */
| // 销售订单
| export interface SaleOrderItem {
| id: string
| orderNo: string
| customerId: string
| customerName: string
| executor: string
| planDeliveryDate: string
| products: string
| status: string
| production: string
| }
| //生产订单分页列表
| export interface ProductionOrderItem {
| id?: string
| orderNo: string
| executor: string
| planDeliveryDate: string
| product: string
| status: string
| production: string
| model: string
| }
| //生产计划
| export interface ProductionPlanItem {
| id?: string
| planNo: string
| productCategory: string
| productModel: string
| completeQuantity: string
| startDate: string
| completeDate: string
| supervisor: string
| status: string
| }
|
|