You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
175 lines
3.4 KiB
175 lines
3.4 KiB
package com.letian.modules.base.entity;
|
|
|
|
public class NewScheduledData {
|
|
private String resourceId;
|
|
private String site;
|
|
private Float qtyRequired;
|
|
private Float qtyReported;
|
|
private Float qtyApprove;
|
|
private Float qtyPercent;
|
|
private Float approvePercent;
|
|
private String resourceDesc;
|
|
private String seqno;
|
|
private String orderno;
|
|
private String partNo;
|
|
private String partDesc;
|
|
private Float qtyUnReported;
|
|
private String shiftType;
|
|
private Float num1;
|
|
private Float num2;
|
|
private Float num3;
|
|
private Float num4;
|
|
private String strDate;
|
|
|
|
public String getResourceId() {
|
|
return resourceId;
|
|
}
|
|
|
|
public void setResourceId(String resourceId) {
|
|
this.resourceId = resourceId;
|
|
}
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public Float getQtyRequired() {
|
|
return qtyRequired;
|
|
}
|
|
|
|
public void setQtyRequired(Float qtyRequired) {
|
|
this.qtyRequired = qtyRequired;
|
|
}
|
|
|
|
public Float getQtyReported() {
|
|
return qtyReported;
|
|
}
|
|
|
|
public void setQtyReported(Float qtyReported) {
|
|
this.qtyReported = qtyReported;
|
|
}
|
|
|
|
public Float getQtyPercent() {
|
|
return qtyPercent;
|
|
}
|
|
|
|
public void setQtyPercent(Float qtyPercent) {
|
|
this.qtyPercent = qtyPercent;
|
|
}
|
|
|
|
public String getResourceDesc() {
|
|
return resourceDesc;
|
|
}
|
|
|
|
public void setResourceDesc(String resourceDesc) {
|
|
this.resourceDesc = resourceDesc;
|
|
}
|
|
|
|
public String getSeqno() {
|
|
return seqno;
|
|
}
|
|
|
|
public void setSeqno(String seqno) {
|
|
this.seqno = seqno;
|
|
}
|
|
|
|
public String getOrderno() {
|
|
return orderno;
|
|
}
|
|
|
|
public void setOrderno(String orderno) {
|
|
this.orderno = orderno;
|
|
}
|
|
|
|
public String getPartNo() {
|
|
return partNo;
|
|
}
|
|
|
|
public void setPartNo(String partNo) {
|
|
this.partNo = partNo;
|
|
}
|
|
|
|
public String getPartDesc() {
|
|
return partDesc;
|
|
}
|
|
|
|
public void setPartDesc(String partDesc) {
|
|
this.partDesc = partDesc;
|
|
}
|
|
|
|
public Float getQtyUnReported() {
|
|
return qtyUnReported;
|
|
}
|
|
|
|
public void setQtyUnReported(Float qtyUnReported) {
|
|
this.qtyUnReported = qtyUnReported;
|
|
}
|
|
|
|
public String getShiftType() {
|
|
return shiftType;
|
|
}
|
|
|
|
public void setShiftType(String shiftType) {
|
|
this.shiftType = shiftType;
|
|
}
|
|
|
|
public Float getNum1() {
|
|
return num1;
|
|
}
|
|
|
|
public void setNum1(Float num1) {
|
|
this.num1 = num1;
|
|
}
|
|
|
|
public Float getNum2() {
|
|
return num2;
|
|
}
|
|
|
|
public void setNum2(Float num2) {
|
|
this.num2 = num2;
|
|
}
|
|
|
|
public Float getNum3() {
|
|
return num3;
|
|
}
|
|
|
|
public void setNum3(Float num3) {
|
|
this.num3 = num3;
|
|
}
|
|
|
|
public Float getNum4() {
|
|
return num4;
|
|
}
|
|
|
|
public void setNum4(Float num4) {
|
|
this.num4 = num4;
|
|
}
|
|
|
|
public String getStrDate() {
|
|
return strDate;
|
|
}
|
|
|
|
public void setStrDate(String strDate) {
|
|
this.strDate = strDate;
|
|
}
|
|
|
|
public Float getQtyApprove() {
|
|
return qtyApprove;
|
|
}
|
|
|
|
public void setQtyApprove(Float qtyApprove) {
|
|
this.qtyApprove = qtyApprove;
|
|
}
|
|
|
|
public Float getApprovePercent() {
|
|
return approvePercent;
|
|
}
|
|
|
|
public void setApprovePercent(Float approvePercent) {
|
|
this.approvePercent = approvePercent;
|
|
}
|
|
}
|