73 lines
1.5 KiB
Java
73 lines
1.5 KiB
Java
package com.adc.da.common;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
public class SarSynInputEO {
|
|
private String id;
|
|
private String standSort;
|
|
private String standNumber;
|
|
private String standYear;
|
|
private String standType;
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private Date modifyTime;
|
|
private String standName;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getStandSort() {
|
|
return standSort;
|
|
}
|
|
|
|
public void setStandSort(String standSort) {
|
|
this.standSort = standSort;
|
|
}
|
|
|
|
public String getStandNumber() {
|
|
return standNumber;
|
|
}
|
|
|
|
public void setStandNumber(String standNumber) {
|
|
this.standNumber = standNumber;
|
|
}
|
|
|
|
public String getStandYear() {
|
|
return standYear;
|
|
}
|
|
|
|
public void setStandYear(String standYear) {
|
|
this.standYear = standYear;
|
|
}
|
|
|
|
public String getStandType() {
|
|
return standType;
|
|
}
|
|
|
|
public void setStandType(String standType) {
|
|
this.standType = standType;
|
|
}
|
|
|
|
public Date getModifyTime() {
|
|
return modifyTime;
|
|
}
|
|
|
|
public void setModifyTime(Date modifyTime) {
|
|
this.modifyTime = modifyTime;
|
|
}
|
|
|
|
public String getStandName() {
|
|
return standName;
|
|
}
|
|
|
|
public void setStandName(String standName) {
|
|
this.standName = standName;
|
|
}
|
|
}
|