| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package QCM.COMMUNAL.VO;
- import java.io.Serializable;
- public class QcmJudgePhysicalUtmM implements Serializable{
- /**
- * 用于更新库存表或物料进程表,材质最终判定记录号(Q+两位年月日+4位流水号,Q1711100001)
- */
- private String pic_id;
- public String getPic_id() {
- return this.pic_id;
- }
- public void setPic_id(String pic_id) {
- this.pic_id = pic_id;
- }
- /**
- * 检验号
- */
- private String inspection_lot;
- public String getInspection_lot() {
- return this.inspection_lot;
- }
- public void setInspection_lot(String inspection_lot) {
- this.inspection_lot = inspection_lot;
- }
- /**
- * DESIGN_KEY
- */
- private String design_key;
- public String getDesign_key() {
- return this.design_key;
- }
- public void setDesign_key(String design_key) {
- this.design_key = design_key;
- }
- /**
- * 判定结果代码
- */
- private String pic_result_code;
- public String getPic_result_code() {
- return this.pic_result_code;
- }
- public void setPic_result_code(String pic_result_code) {
- this.pic_result_code = pic_result_code;
- }
- /**
- * 判定结果描述
- */
- private String pic_result_desc;
- public String getPic_result_desc() {
- return this.pic_result_desc;
- }
- public void setPic_result_desc(String pic_result_desc) {
- this.pic_result_desc = pic_result_desc;
- }
- }
|