lyh
2026-01-19 6141f0a2140439337dccf8bfe93c4ca83605446d
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.lxzn.framework.domain.mes;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
 
/**
 * @author clown
 * * @date 2022/10/29
 */
@Data
@NoArgsConstructor
@TableName(value = "mes_sync_workmanship")
public class MesSyncWorkmanship implements Serializable {
 
    @TableId(value = "id")
    private String id;
    private String mesWorkId;
    private String proMdsItemId;//产品ID
    private String mdsItemId;//物料ID
    private String routeCode;//工艺指令号
    private String routeName;//工艺指令名称
    private String routeType;//工艺指令类型 ^ A-装配指令,F-加工指令,AA-补充指令,T-典型工艺,FJ分解
 
    private String revisionNo;//工艺版本号
    private String revisionDesc;//工艺版本描述
    private String mainDeptId;//主制部门ID
    private String mdsWorkLine;//分工路线表ID
    private String workLine;//分工路线
    private Integer orgInOutRate;//投入产出比之积
    private Integer leadTime;//工艺提前期
    private String validFlag;//有效性 ^ 0-有效,1-无效
    private String ynNewRevision;//最新/最高版本 Y-是,N-否
    private String notes;//备注
    private String useMdsWorkCenterId;//使用制造单元ID
    private String useMdsWorkGroupId;//使用班组ID
    private String routeEnNumber;//次数
    private String routeEnType;//类型 ^ 1-装配; 2-分解;
    private String effectiveLot;//生效架次/生效台份
    private String ineffectiveLot;//失效架次/失效台份
    private Integer routeWaitTime;//零件工艺规程的等待时间
    private String itemRevision;//版本号
    private String outputRevisionNo;//输出工艺版次
    private String routeStage;//工艺阶段
    private String itemStage;//设计图阶段
    private String itemId;//pdmID
    private String zzItemId;//主制工艺ID
    private String changeNo;//更改单号
    private String routeAuthorized;//编制
    private String routeProofread;//校对
    private String routeAudit;//审核
    private String routeCheckHead;//校验主任
    private String routeApprove;//批准
    private Integer routeCycle;//周期
    private String mdsOperationTypeId;//操作工种ID
    private String licenseClass;//操作证等级
    private String mesTaskNo;//任务号
    private String partMdsItemId;//部件id
    private String partMdsItemCode;//部件号
    private String partMdsItemName;//部件名称
}