对比新文件 |
| | |
| | | package com.gk.firework.Domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | @TableName("blacklist") |
| | | public class BlackList implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id id **/ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 企业编号 enterprisenumber **/ |
| | | private String enterprisenumber; |
| | | |
| | | /** 企业名称 enterprisename **/ |
| | | private String enterprisename; |
| | | |
| | | /** 创建时间 createtime **/ |
| | | private Date createtime; |
| | | |
| | | /** 创建人姓名 createby **/ |
| | | private String createby; |
| | | |
| | | /** 创建人id createbyid **/ |
| | | private Long createbyid; |
| | | |
| | | /** 更新时间 modifytime **/ |
| | | private Date modifytime; |
| | | |
| | | /** 更信人 modifyby **/ |
| | | private String modifyby; |
| | | |
| | | /** 有效标识 validflag **/ |
| | | private Boolean validflag; |
| | | |
| | | /** 主键id id **/ |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** 主键id id **/ |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** 企业编号 enterprisenumber **/ |
| | | public String getEnterprisenumber() { |
| | | return enterprisenumber; |
| | | } |
| | | |
| | | /** 企业编号 enterprisenumber **/ |
| | | public void setEnterprisenumber(String enterprisenumber) { |
| | | this.enterprisenumber = enterprisenumber == null ? null : enterprisenumber.trim(); |
| | | } |
| | | |
| | | /** 企业名称 enterprisename **/ |
| | | public String getEnterprisename() { |
| | | return enterprisename; |
| | | } |
| | | |
| | | /** 企业名称 enterprisename **/ |
| | | public void setEnterprisename(String enterprisename) { |
| | | this.enterprisename = enterprisename == null ? null : enterprisename.trim(); |
| | | } |
| | | |
| | | /** 创建时间 createtime **/ |
| | | public Date getCreatetime() { |
| | | return createtime; |
| | | } |
| | | |
| | | /** 创建时间 createtime **/ |
| | | public void setCreatetime(Date createtime) { |
| | | this.createtime = createtime; |
| | | } |
| | | |
| | | /** 创建人姓名 createby **/ |
| | | public String getCreateby() { |
| | | return createby; |
| | | } |
| | | |
| | | /** 创建人姓名 createby **/ |
| | | public void setCreateby(String createby) { |
| | | this.createby = createby == null ? null : createby.trim(); |
| | | } |
| | | |
| | | /** 更新时间 modifytime **/ |
| | | public Date getModifytime() { |
| | | return modifytime; |
| | | } |
| | | |
| | | /** 更新时间 modifytime **/ |
| | | public void setModifytime(Date modifytime) { |
| | | this.modifytime = modifytime; |
| | | } |
| | | |
| | | /** 更信人 modifyby **/ |
| | | public String getModifyby() { |
| | | return modifyby; |
| | | } |
| | | |
| | | /** 更信人 modifyby **/ |
| | | public void setModifyby(String modifyby) { |
| | | this.modifyby = modifyby == null ? null : modifyby.trim(); |
| | | } |
| | | |
| | | /** 有效标识 validflag **/ |
| | | public Boolean getValidflag() { |
| | | return validflag; |
| | | } |
| | | |
| | | /** 有效标识 validflag **/ |
| | | public void setValidflag(Boolean validflag) { |
| | | this.validflag = validflag; |
| | | } |
| | | |
| | | public Long getCreatebyid() { |
| | | return createbyid; |
| | | } |
| | | |
| | | public void setCreatebyid(Long createbyid) { |
| | | this.createbyid = createbyid; |
| | | } |
| | | } |