package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiParam; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * PersPositionViewLogParam * * @author lhc * @date 2023年4月3日 */ public class PersPositionViewLogParam extends PageParam implements Serializable { // 主键ID @ApiParam(name = "主键ID") @ApiModelProperty(value = "主键ID", name = "id") private String id; // 所属机构ID @ApiParam(name = "所属机构ID") @ApiModelProperty(value = "所属机构ID", name = "orgId") private String orgId; // 所属行政区划编码 @ApiParam(name = "所属行政区划编码") @ApiModelProperty(value = "所属行政区划编码", name = "adCode") private String adCode; // 所属行政区划编码 @ApiModelProperty(value="所属行政区划名称",name="AD_NAME") private String adName; // 被查看人员ID @ApiParam(name = "被查看人员ID") @ApiModelProperty(value = "被查看人员ID", name = "persIdViewed") private String persIdViewed; // 被查看人员姓名 @ApiParam(name = "被查看人员姓名") @ApiModelProperty(value = "被查看人员姓名", name = "persNameViewed") private String persNameViewed; // 查看人姓名 @ApiParam(name = "查看人姓名") @ApiModelProperty(value = "查看人姓名", name = "persName") private String persName; // 查看(记录)人ID @ApiParam(name = "查看(记录)人ID") @ApiModelProperty(value = "查看(记录)人ID", name = "persId") private String persId; // 查看(创建)时间 @ApiParam(name = "查看(创建)时间") @ApiModelProperty(value = "查看(创建)时间", name = "intm") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") private Date intm; // 最后修改时间 @ApiParam(name = "最后修改时间") @ApiModelProperty(value = "最后修改时间", name = "uptm") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") private Date uptm; // 备注 @ApiParam(name = "备注") @ApiModelProperty(value = "备注", name = "note") private String note; // 数据状态 @ApiParam(name = "数据状态") @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; @ApiParam(name = "开始时间") @ApiModelProperty(value = "开始时间") private String sttm; @ApiParam(name = "结束时间") @ApiModelProperty(value = "结束时间") private String entm; public PersPositionViewLogParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public String getOrgId() { return orgId; } @Override public void setOrgId(String orgId) { this.orgId = orgId; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getPersIdViewed() { return persIdViewed; } public void setPersIdViewed(String persIdViewed) { this.persIdViewed = persIdViewed; } public String getPersNameViewed() { return persNameViewed; } public void setPersNameViewed(String persNameViewed) { this.persNameViewed = persNameViewed; } public String getPersName() { return persName; } public void setPersName(String persName) { this.persName = persName; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } public String getSttm() { return sttm; } public void setSttm(String sttm) { this.sttm = sttm; } public String getEntm() { return entm; } public void setEntm(String entm) { this.entm = entm; } }