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.
|
|
package com.spring.modules.base.entity;
import org.apache.ibatis.type.Alias;
import java.math.BigDecimal;@Alias("PlmProjectToolApplyDetail")public class PlmProjectToolApplyDetail { /** * */ private String site;
/** * */ private String applyNo;
/** * */ private Integer seqNo;
/** * */ private String toolId;
/** * */ private BigDecimal standardCost; private BigDecimal unitCost; /** * */ private Integer applyQty;
/** * */ private String remark;
/** * */ private String orderRef1;
/** * */ private String orderRef2;
/** * */ private String orderRef3;
/** * */ private String orderRef4;
/** * */ private String orderRef5; private String orderRef6; private String instanceCode; public String getSite() { return site; }
public void setSite(String site) { this.site = site; }
public String getApplyNo() { return applyNo; }
public void setApplyNo(String applyNo) { this.applyNo = applyNo; }
public Integer getSeqNo() { return seqNo; }
public void setSeqNo(Integer seqNo) { this.seqNo = seqNo; }
public String getToolId() { return toolId; }
public void setToolId(String toolId) { this.toolId = toolId; }
public BigDecimal getStandardCost() { return standardCost; }
public void setStandardCost(BigDecimal standardCost) { this.standardCost = standardCost; }
public Integer getApplyQty() { return applyQty; }
public void setApplyQty(Integer applyQty) { this.applyQty = applyQty; }
public String getRemark() { return remark; }
public void setRemark(String remark) { this.remark = remark; }
public String getOrderRef1() { return orderRef1; }
public void setOrderRef1(String orderRef1) { this.orderRef1 = orderRef1; }
public String getOrderRef2() { return orderRef2; }
public void setOrderRef2(String orderRef2) { this.orderRef2 = orderRef2; }
public String getOrderRef3() { return orderRef3; }
public void setOrderRef3(String orderRef3) { this.orderRef3 = orderRef3; }
public String getOrderRef4() { return orderRef4; }
public void setOrderRef4(String orderRef4) { this.orderRef4 = orderRef4; }
public String getOrderRef5() { return orderRef5; }
public void setOrderRef5(String orderRef5) { this.orderRef5 = orderRef5; }
public BigDecimal getUnitCost() { return unitCost; }
public void setUnitCost(BigDecimal unitCost) { this.unitCost = unitCost; }
public String getOrderRef6() { return orderRef6; }
public void setOrderRef6(String orderRef6) { this.orderRef6 = orderRef6; }
public String getInstanceCode() { return instanceCode; }
public void setInstanceCode(String instanceCode) { this.instanceCode = instanceCode; }}
|