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.
96 lines
2.3 KiB
96 lines
2.3 KiB
package com.spring.modules.project.data;
|
|
|
|
import org.apache.ibatis.type.Alias;
|
|
|
|
@Alias("TechnicalCustomerInfoData")
|
|
public class TechnicalCustomerInfoData {
|
|
private Integer id;
|
|
private String customerId;
|
|
private String customerName;
|
|
private String customerDesc;
|
|
private String customerRemark;
|
|
private String remark;
|
|
private String finalCustomerId;
|
|
private String pictureAddess;
|
|
private String customerPictureChangeRemark;
|
|
private String productionFileComments;
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getCustomerId() {
|
|
return customerId;
|
|
}
|
|
|
|
public void setCustomerId(String customerId) {
|
|
this.customerId = customerId;
|
|
}
|
|
|
|
public String getCustomerName() {
|
|
return customerName;
|
|
}
|
|
|
|
public void setCustomerName(String customerName) {
|
|
this.customerName = customerName;
|
|
}
|
|
|
|
public String getCustomerDesc() {
|
|
return customerDesc;
|
|
}
|
|
|
|
public void setCustomerDesc(String customerDesc) {
|
|
this.customerDesc = customerDesc;
|
|
}
|
|
|
|
public String getCustomerRemark() {
|
|
return customerRemark;
|
|
}
|
|
|
|
public void setCustomerRemark(String customerRemark) {
|
|
this.customerRemark = customerRemark;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
public String getFinalCustomerId() {
|
|
return finalCustomerId;
|
|
}
|
|
|
|
public void setFinalCustomerId(String finalCustomerId) {
|
|
this.finalCustomerId = finalCustomerId;
|
|
}
|
|
|
|
public String getPictureAddess() {
|
|
return pictureAddess;
|
|
}
|
|
|
|
public void setPictureAddess(String pictureAddess) {
|
|
this.pictureAddess = pictureAddess;
|
|
}
|
|
|
|
public String getCustomerPictureChangeRemark() {
|
|
return customerPictureChangeRemark;
|
|
}
|
|
|
|
public void setCustomerPictureChangeRemark(String customerPictureChangeRemark) {
|
|
this.customerPictureChangeRemark = customerPictureChangeRemark;
|
|
}
|
|
|
|
public String getProductionFileComments() {
|
|
return productionFileComments;
|
|
}
|
|
|
|
public void setProductionFileComments(String productionFileComments) {
|
|
this.productionFileComments = productionFileComments;
|
|
}
|
|
}
|