| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspMtprgSmsTm
- *
- * @author hjp
- * @date 2022-8-29
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspMtprgSmsTm extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value="ID",name="id")
- private String id;
- // 机构ID
- @ApiModelProperty(value="机构标识",name="addVcd")
- private String addVcd;
- // 一个月的几天
- @ApiModelProperty(value="一个月的几天",name="daysOfMonth")
- private Long daysOfMonth;
- // 创建时间
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value="修改时间",name="uptm")
- private Date uptm;
- public BisInspMtprgSmsTm() {
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspMtprgSmsTm [" + "id=" + id + ", orgId=" + addVcd + ", daysOfMonth=" + daysOfMonth + ", intm=" + intm + ", uptm=" + uptm + "]";
- }
- }
|