| | |
| | | @Getter |
| | | @TableName("mdm_machine") |
| | | public class Machine extends BizEntity { |
| | | /** |
| | | * 状态:1 启用 |
| | | */ |
| | | public static final int STATUS_ENABLE = 1; |
| | | /** |
| | | * 状态:2 禁用 |
| | | */ |
| | | public static final int STATUS_DISABLED = 2; |
| | | private String name; |
| | | private String code; |
| | | /** |
| | | * 所属机床组ID |
| | | * 所属机床组code,字典machine_group |
| | | */ |
| | | private Long machineGroupId; |
| | | private String machineGroupCode; |
| | | /** |
| | | * 机器规格:01车床/02铣床,在业务字典配置(key=machine_spec) |
| | | */ |
| | |
| | | */ |
| | | private String progSendDir; |
| | | /** |
| | | * send文件夹保持时间 小时 |
| | | */ |
| | | private Integer sendDirExpiryHours; |
| | | /** |
| | | * 程序回传目录', |
| | | */ |
| | | private String progReceiveDir; |
| | | /** |
| | | * receive文件夹保持时间 小时 |
| | | */ |
| | | private Integer receiveDirExpiryHours; |
| | | /** |
| | | * 程序长期存储目录 |
| | | */ |
| | | private String progTempDir; |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |