| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * TacAttPawpBaseChangeLogParam
- *
- * @author hx
- * @date 2021-1-19
- */
- public class TacAttPawpBaseChangeLogParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 稽察项目ID
- @ApiParam(name = "稽察项目ID")
- @ApiModelProperty(value = "稽察项目ID", name = "ojbId")
- private String ojbId;
- @ApiModelProperty(value="稽察项目名称",name="ojbName")
- private String ojbName;
- // 年份(每年固定添加50个项目)
- @ApiParam(name = "年份(每年固定添加50个项目)")
- @ApiModelProperty(value = "年份(每年固定添加50个项目)", name = "year")
- private Long year;
- // 调整原因
- @ApiParam(name = "调整原因")
- @ApiModelProperty(value = "调整原因", name = "changeReson")
- private String changeReson;
- // 调整内容
- @ApiParam(name = "调整内容")
- @ApiModelProperty(value = "调整内容", name = "content")
- private String content;
- // 创建人ID
- @ApiParam(name = "创建人ID")
- @ApiModelProperty(value = "创建人ID", name = "persId")
- private String persId;
- // 创建人名称
- @ApiParam(name = "创建人名称")
- @ApiModelProperty(value = "创建人名称", name = "persName")
- private String persName;
- // 调整时间
- @ApiParam(name = "调整时间")
- @ApiModelProperty(value = "调整时间", name = "intm")
- private Date intm;
- public TacAttPawpBaseChangeLogParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getOjbId() {
- return ojbId;
- }
- public void setOjbId(String ojbId) {
- this.ojbId = ojbId;
- }
- public String getOjbName() {
- return ojbName;
- }
- public void setOjbName(String ojbName) {
- this.ojbName = ojbName;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public String getChangeReson() {
- return changeReson;
- }
- public void setChangeReson(String changeReson) {
- this.changeReson = changeReson;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- }
|