| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package com.uas.eis.entity;
- import com.alibaba.fastjson.annotation.JSONField;
- /**
- * @author koul
- * @email koul@usoftchina.com
- * @date 2023-09-19 08:55
- */
- public class EcrMakeDetail {
- @JSONField(name = "journalNo")
- private String ecr_code;
- @JSONField(name = "prodNo")
- private String emd_macode;
- @JSONField(name = "type1")
- private String ecr_tempg;
- @JSONField(name = "changeContent")
- private String ecr_tempb;
- @JSONField(name = "changeContent2")
- private String ecr_tempc;
- @JSONField(name = "status")
- private String status;
- @JSONField(name = "mustFlag")
- private String emd_ifzhix;
- @JSONField(name = "location")
- private String emd_controlpoint;
- @JSONField(name = "rmk1")
- private String emd_detno;
- @JSONField(name = "mesUser")
- private String mesUser;
- @JSONField(name = "mesPwd")
- private String mesPwd;
- public String getEmd_ifzhix() {
- return emd_ifzhix;
- }
- public void setEmd_ifzhix(String emd_ifzhix) {
- this.emd_ifzhix = emd_ifzhix;
- }
- public String getEmd_controlpoint() {
- return emd_controlpoint;
- }
- public void setEmd_controlpoint(String emd_controlpoint) {
- this.emd_controlpoint = emd_controlpoint;
- }
- public String getEcr_code() {
- return ecr_code;
- }
- public void setEcr_code(String ecr_code) {
- this.ecr_code = ecr_code;
- }
- public String getEmd_macode() {
- return emd_macode;
- }
- public void setEmd_macode(String emd_macode) {
- this.emd_macode = emd_macode;
- }
- public String getEcr_tempg() {
- return ecr_tempg;
- }
- public void setEcr_tempg(String ecr_tempg) {
- this.ecr_tempg = ecr_tempg;
- }
- public String getEcr_tempb() {
- return ecr_tempb;
- }
- public void setEcr_tempb(String ecr_tempb) {
- this.ecr_tempb = ecr_tempb;
- }
- public String getEcr_tempc() {
- return ecr_tempc;
- }
- public void setEcr_tempc(String ecr_tempc) {
- this.ecr_tempc = ecr_tempc;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getEmd_detno() {
- return emd_detno;
- }
- public void setEmd_detno(String emd_detno) {
- this.emd_detno = emd_detno;
- }
- public String getMesUser() {
- return mesUser;
- }
- public void setMesUser(String mesUser) {
- this.mesUser = mesUser;
- }
- public String getMesPwd() {
- return mesPwd;
- }
- public void setMesPwd(String mesPwd) {
- this.mesPwd = mesPwd;
- }
- }
|