package com.matrix.system.app.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.matrix.core.tools.DateUtil;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.util.Date;
|
|
@ApiModel(value = "SkinCheckListVo", description = "皮肤检测列表返回参数类")
|
public class SkinCheckListVo {
|
|
@ApiModelProperty(value = "id")
|
private Long id;
|
|
@ApiModelProperty(value = "标题")
|
private String title;
|
|
@ApiModelProperty(value = "检测人员")
|
private String checkUserName;
|
|
@ApiModelProperty(value = "检测门店")
|
private String shopName;
|
|
@JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
|
@ApiModelProperty(value = "检测时间")
|
private Date checkTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
|
public String getCheckUserName() {
|
return checkUserName;
|
}
|
|
public void setCheckUserName(String checkUserName) {
|
this.checkUserName = checkUserName;
|
}
|
|
public String getShopName() {
|
return shopName;
|
}
|
|
public void setShopName(String shopName) {
|
this.shopName = shopName;
|
}
|
|
public Date getCheckTime() {
|
return checkTime;
|
}
|
|
public void setCheckTime(Date checkTime) {
|
this.checkTime = checkTime;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
}
|