package org.springblade.mdm.flow.constants;
|
|
public class FlowContants {
|
public static final String PROGRAM_IDS_KEY = "programids";
|
|
/**
|
* 图号
|
*/
|
public static final String DRAWING_NO = "drawingNo";
|
/**
|
* 工序号
|
*/
|
public static final String PROCESS_NO = "processNo";
|
/**
|
* 图号版次
|
*/
|
public static final String DRAWING_NO_EDITION = "drawingNoEdition";
|
/**
|
* 工序版次
|
*/
|
public static final String PROCESS_EDITION = "processEdition";
|
/*
|
机床编码
|
*/
|
public static final String MACHINE_CODE = "machineCode";
|
/**
|
* 工艺版次
|
*/
|
public static final String CRAFT_EDITION = "craftEdition";
|
/**
|
* 产品型号
|
*/
|
public static final String PRODUCT_MODEL = "productModel";
|
|
/**
|
* 是否有固化程序
|
*/
|
public static final String HAS_CURED_PROGRAM = "hasCuredProgram";
|
}
|