| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 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:BisInspMeetMntsCustoms
- *
- * @author lhc
- * @date 2019-5-31
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspMeetMntsCustoms extends BaseBean implements Serializable {
- // 参会人员姓名
- @ApiModelProperty(value = "参会人员姓名", name = "persName")
- private String persName;
- private String id;
- // 参会人员id
- @ApiModelProperty(value = "参会人员id", name = "persId")
- private String persId;
- // 会议/讨论组id
- @ApiModelProperty(value = "会议/讨论组id", name = "meetRecodeId")
- private String meetRecodeId;
- // 加入时间
- @ApiModelProperty(value = "加入时间", name = "jntm")
- private Date jntm;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 数据是否有效 1 0
- @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
- private String flagValid;
- // 小鱼账号
- @ApiModelProperty(value = "小鱼账号", name = "callnumber")
- private String callnumber;
- public BisInspMeetMntsCustoms() {
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getMeetRecodeId() {
- return meetRecodeId;
- }
- public void setMeetRecodeId(String meetRecodeId) {
- this.meetRecodeId = meetRecodeId;
- }
- public Date getJntm() {
- return jntm;
- }
- public void setJntm(Date jntm) {
- this.jntm = jntm;
- }
- 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 getFlagValid() {
- return flagValid;
- }
- public void setFlagValid(String flagValid) {
- this.flagValid = flagValid;
- }
- public String getCallnumber() {
- return callnumber;
- }
- public void setCallnumber(String callnumber) {
- this.callnumber = callnumber;
- }
- }
|