package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiParam; import java.io.Serializable; import java.util.Date; /** * BisInspMtprgSmsTmParam * * @author hjp * @date 2022-8-29 */ public class BisInspMtprgSmsTmParam extends PageParam implements Serializable { // ID @ApiParam(name = "ID") @ApiModelProperty(value = "ID", name = "id") private String id; // 机构ID @ApiParam(name = "机构标识") @ApiModelProperty(value = "机构标识", name = "orgId") private String addVcd; // 一个月的几天 @ApiParam(name = "一个月的几天") @ApiModelProperty(value = "一个月的几天", name = "daysOfMonth") private Long daysOfMonth; // 创建时间 @ApiParam(name = "创建时间") @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiParam(name = "修改时间") @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; public BisInspMtprgSmsTmParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getAddVcd() { return addVcd; } public void setAddVcd(String addVcd) { this.addVcd = addVcd; } public Long getDaysOfMonth() { return daysOfMonth; } public void setDaysOfMonth(Long daysOfMonth) { this.daysOfMonth = daysOfMonth; } 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; } }