pull/4/head
cp 3 months ago
parent 97b6cd9b4e
commit 423ad0b7bb

@ -8,7 +8,6 @@ import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable; import java.io.Serializable;
/** /**
* *
* *
@ -16,312 +15,194 @@ import java.io.Serializable;
* ModelAndView model * ModelAndView model
*/ */
public class YishengModel implements Serializable { public class YishengModel implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L; // 序列化版本UID用于版本控制
/** /**
* *
*/ */
private Integer id; private Integer id;
/** /**
* *
*/ */
private String yishengUuidNumber; private String yishengUuidNumber;
/** /**
* *
*/ */
private String username; private String username;
/** /**
* *
*/ */
private String password; private String password;
/** /**
* *
*/ */
private String yishengName; private String yishengName;
/** /**
* *
* 使Integer
*/ */
private Integer yishengTypes; private Integer yishengTypes;
/** /**
* *
* 使Integer
*/ */
private Integer zhiweiTypes; private Integer zhiweiTypes;
/** /**
* *
*/ */
private String yishengZhichneg; private String yishengZhichneg;
/** /**
* *
* URL
*/ */
private String yishengPhoto; private String yishengPhoto;
/** /**
* *
*/ */
private String yishengPhone; private String yishengPhone;
/** /**
* *
*
*/ */
private String yishengGuahao; private String yishengGuahao;
/** /**
* *
*/ */
private String yishengEmail; private String yishengEmail;
/** /**
* *
*/ */
private Double yishengNewMoney; private Double yishengNewMoney;
/** /**
* *
*
*/ */
private String yishengContent; private String yishengContent;
/** /**
* show1 show2 photoShow * show1 show2 photoShow
* 使@JsonFormat@DateTimeFormat
*/ */
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss") @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
@DateTimeFormat @DateTimeFormat
private Date createTime; private Date createTime;
/** /**
* * ID
*/ * @return ID
*/
public Integer getId() { public Integer getId() {
return id; return id;
} }
/** /**
* * ID
*/ * @param id ID
*/
public void setId(Integer id) { public void setId(Integer id) {
this.id = id; this.id = id;
} }
/** /**
* *
*/ * @return
*/
public String getYishengUuidNumber() { public String getYishengUuidNumber() {
return yishengUuidNumber; return yishengUuidNumber;
} }
/** /**
* *
*/ * @param yishengUuidNumber
*/
public void setYishengUuidNumber(String yishengUuidNumber) { public void setYishengUuidNumber(String yishengUuidNumber) {
this.yishengUuidNumber = yishengUuidNumber; this.yishengUuidNumber = yishengUuidNumber;
} }
/** /**
* *
*/ * @return
*/
public String getUsername() { public String getUsername() {
return username; return username;
} }
/** /**
* *
*/ * @param username
*/
public void setUsername(String username) { public void setUsername(String username) {
this.username = username; this.username = username;
} }
/** /**
* *
*/ * @return
*/
public String getPassword() { public String getPassword() {
return password; return password;
} }
/** /**
* *
*/ * @param password
*/
public void setPassword(String password) { public void setPassword(String password) {
this.password = password; this.password = password;
} }
/** /**
* *
*/ * @return
*/
public String getYishengName() { public String getYishengName() {
return yishengName; return yishengName;
} }
/** /**
* *
*/ * @param yishengName
*/
public void setYishengName(String yishengName) { public void setYishengName(String yishengName) {
this.yishengName = yishengName; this.yishengName = yishengName;
} }
/** /**
* *
*/ * @return
*/
public Integer getYishengTypes() { public Integer getYishengTypes() {
return yishengTypes; return yishengTypes;
} }
/** /**
* *
*/ * @param yishengTypes
*/
public void setYishengTypes(Integer yishengTypes) { public void setYishengTypes(Integer yishengTypes) {
this.yishengTypes = yishengTypes; this.yishengTypes = yishengTypes;
} }
/** /**
* *
*/ * @return
*/
public Integer getZhiweiTypes() { public Integer getZhiweiTypes() {
return zhiweiTypes; return zhiweiTypes;
} }
/**
/** *
*
*/
public void setZhiweiTypes(Integer zhiweiTypes) {
this.zhiweiTypes = zhiweiTypes;
}
/**
*
*/
public String getYishengZhichneg() {
return yishengZhichneg;
}
/**
*
*/
public void setYishengZhichneg(String yishengZhichneg) {
this.yishengZhichneg = yishengZhichneg;
}
/**
*
*/
public String getYishengPhoto() {
return yishengPhoto;
}
/**
*
*/
public void setYishengPhoto(String yishengPhoto) {
this.yishengPhoto = yishengPhoto;
}
/**
*
*/
public String getYishengPhone() {
return yishengPhone;
}
/**
*
*/
public void setYishengPhone(String yishengPhone) {
this.yishengPhone = yishengPhone;
}
/**
*
*/
public String getYishengGuahao() {
return yishengGuahao;
}
/**
*
*/
public void setYishengGuahao(String yishengGuahao) {
this.yishengGuahao = yishengGuahao;
}
/**
*
*/
public String getYishengEmail() {
return yishengEmail;
}
/**
*
*/
public void setYishengEmail(String yishengEmail) {
this.yishengEmail = yishengEmail;
}
/**
*
*/
public Double getYishengNewMoney() {
return yishengNewMoney;
}
/**
*
*/
public void setYishengNewMoney(Double yishengNewMoney) {
this.yishengNewMoney = yishengNewMoney;
}
/**
*
*/
public String getYishengContent() {
return yishengContent;
}
/**
*
*/
public void setYishengContent(String yishengContent) {
this.yishengContent = yishengContent;
}
/**
* show1 show2 photoShow
*/
public Date getCreateTime() {
return createTime;
}
/**
* show1 show2 photoShow
*/
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}
Loading…
Cancel
Save