| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- package com.uas.eis.entity;
- import com.alibaba.fastjson.annotation.JSONField;
- /**
- * @author koul
- * @email koul@usoftchina.com
- * @date 2021-12-07 14:32
- */
- public class MakeMaterial {
- @JSONField(name = "prodNo")
- private String mm_code;
- @JSONField(name = "lineId")
- private int erpid;
- @JSONField(name = "itemNo")
- private String mm_prodcode;
- @JSONField(name = "itemName")
- private String pr_detail;
- @JSONField(name = "description")
- private String pr_spec;
- @JSONField(name = "unitNo")
- private String pr_unit;
- @JSONField(name = "qty")
- private Float qty;
- @JSONField(name = "totalQty")
- private Float mm_qty;
- @JSONField(name = "baseQty")
- private Float mm_oneuseqty;
- @JSONField(name = "type")
- private String type;
- @JSONField(name = "createdUser")
- private String bo_recorder;
- @JSONField(name = "createdDateTime")
- private String bo_date;
- @JSONField(name = "version")
- private int bo_version;
- @JSONField(name = "companyNo")
- private String bo_cop;
- @JSONField(name = "oriItemNo")
- private String mm_repprodcode;
- @JSONField(name = "scarpQty")
- private Float mm_balance;
- @JSONField(name = "custNo")
- private String ma_custcode;
- @JSONField(name = "modifiedDateTime")
- private String mc_indate;
- @JSONField(name = "modifiedUser")
- private String mc_recorder;
- @JSONField(name = "mesUser")
- private String mesUser;
- @JSONField(name = "mesPwd")
- private String mesPwd;
- @JSONField(name = "flag")
- private int flag;
- public int getErpid() {
- return erpid;
- }
- public void setErpid(int erpid) {
- this.erpid = erpid;
- }
- 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;
- }
- public int getFlag() {
- return flag;
- }
- public void setFlag(int flag) {
- this.flag = flag;
- }
- public String getMm_code() {
- return mm_code;
- }
- public void setMm_code(String mm_code) {
- this.mm_code = mm_code;
- }
- public String getMm_prodcode() {
- return mm_prodcode;
- }
- public void setMm_prodcode(String mm_prodcode) {
- this.mm_prodcode = mm_prodcode;
- }
- public String getPr_detail() {
- return pr_detail;
- }
- public void setPr_detail(String pr_detail) {
- this.pr_detail = pr_detail;
- }
- public String getPr_spec() {
- return pr_spec;
- }
- public void setPr_spec(String pr_spec) {
- this.pr_spec = pr_spec;
- }
- public String getPr_unit() {
- return pr_unit;
- }
- public void setPr_unit(String pr_unit) {
- this.pr_unit = pr_unit;
- }
- public Float getQty() {
- return qty;
- }
- public void setQty(Float qty) {
- this.qty = qty;
- }
- public Float getMm_qty() {
- return mm_qty;
- }
- public void setMm_qty(Float mm_qty) {
- this.mm_qty = mm_qty;
- }
- public Float getMm_oneuseqty() {
- return mm_oneuseqty;
- }
- public void setMm_oneuseqty(Float mm_oneuseqty) {
- this.mm_oneuseqty = mm_oneuseqty;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getBo_recorder() {
- return bo_recorder;
- }
- public void setBo_recorder(String bo_recorder) {
- this.bo_recorder = bo_recorder;
- }
- public String getBo_date() {
- return bo_date;
- }
- public void setBo_date(String bo_date) {
- this.bo_date = bo_date;
- }
- public int getBo_version() {
- return bo_version;
- }
- public void setBo_version(int bo_version) {
- this.bo_version = bo_version;
- }
- public String getBo_cop() {
- return bo_cop;
- }
- public void setBo_cop(String bo_cop) {
- this.bo_cop = bo_cop;
- }
- public String getMm_repprodcode() {
- return mm_repprodcode;
- }
- public void setMm_repprodcode(String mm_repprodcode) {
- this.mm_repprodcode = mm_repprodcode;
- }
- public Float getMm_balance() {
- return mm_balance;
- }
- public void setMm_balance(Float mm_balance) {
- this.mm_balance = mm_balance;
- }
- public String getMa_custcode() {
- return ma_custcode;
- }
- public void setMa_custcode(String ma_custcode) {
- this.ma_custcode = ma_custcode;
- }
- public String getMc_indate() {
- return mc_indate;
- }
- public void setMc_indate(String mc_indate) {
- this.mc_indate = mc_indate;
- }
- public String getMc_recorder() {
- return mc_recorder;
- }
- public void setMc_recorder(String mc_recorder) {
- this.mc_recorder = mc_recorder;
- }
- }
|