| | |
| | | */ |
| | | public static final String TYPE_PROGRAM_FILE = "70"; |
| | | |
| | | /** |
| | | * 文件节点文件类型:程序 |
| | | */ |
| | | public static final String FILE_CATEGOAY_PROGRAM = "program"; |
| | | /** |
| | | * 文件节点文件类型:其他 |
| | | */ |
| | | public static final String FILE_CATEGORY_OTHER = "other"; |
| | | /** |
| | | * 文件节点文件类型:子程序 |
| | | */ |
| | | public static final String FILE_CATEGORY_SUBPROGRAM = "subprogram"; |
| | | |
| | | private String name; |
| | | private Long parentId; |
| | | |
| | |
| | | private String machineCode; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 文件类型,只有 |
| | | */ |
| | | //private String fileCategory; |
| | | /** |
| | | * 工序,如“精铣” |
| | | */ |
| | |
| | | * 工艺版次 |
| | | */ |
| | | private String craftEdition; |
| | | /** |
| | | * 是否最新版次,1:最新版次;0:历史版次 |
| | | */ |
| | | private Integer isLastEdition = 1; |
| | | /** |
| | | * 零组件号/图号 |
| | | */ |
| | |
| | | private String productModel; |
| | | |
| | | /** |
| | | * 程序编号(程序包名节点需要) |
| | | */ |
| | | private String programNo; |
| | | |
| | | /** |
| | | * 流程程序文件id,只有程序文件(70)类型的节点有此值 |
| | | */ |
| | | private Long flowProgramFileId; |