123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- package com.ruoyi.project.invoice.domain;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.framework.aspectj.lang.annotation.Excel;
- import com.ruoyi.framework.web.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import java.util.Date;
- /**
- * 用户单位管理对象 t_invoice_user_unit
- *
- * @author ruoyi
- * @date 2022-09-07
- */
- public class TInvoiceUserUnit extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 唯一标识ID */
- private Long id;
- /** 单位 */
- @Excel(name = "单位")
- private String userUnit;
- /** 用户 */
- @TableField(exist = false)
- @Excel(name = "用户")
- private String nickName;
- private String userIds;
- /** 状态 0 :正常 ;-1:删除 */
- private Long delFlag;
- /** 创建人 */
- @Excel(name = "创建人")
- private String createrCode;
- /** 创建时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date createdate;
- /** 修改人 */
- //@Excel(name = "修改人")
- private Long updaterCode;
- /** 修改时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- // @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date updatedate;
- /** 部门编号 */
- @Excel(name = "部门编号")
- private Long deptId;
- @Excel(name = "部门名称")
- @TableField(exist = false)
- private String deptName;
- /** 备注 */
- @Excel(name = "备注")
- private String remarks;
- public String getNickName() {
- return nickName;
- }
- public void setNickName(String nickName) {
- this.nickName = nickName;
- }
- public String getDeptName() {
- return deptName;
- }
- public void setDeptName(String deptName) {
- this.deptName = deptName;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setUserUnit(String userUnit)
- {
- this.userUnit = userUnit;
- }
- public String getUserUnit()
- {
- return userUnit;
- }
- public void setUserIds(String userIds)
- {
- this.userIds = userIds;
- }
- public String getUserIds()
- {
- return userIds;
- }
- public void setDelFlag(Long delFlag)
- {
- this.delFlag = delFlag;
- }
- public Long getDelFlag()
- {
- return delFlag;
- }
- public void setCreaterCode(String createrCode)
- {
- this.createrCode = createrCode;
- }
- public String getCreaterCode()
- {
- return createrCode;
- }
- public void setCreatedate(Date createdate)
- {
- this.createdate = createdate;
- }
- public Date getCreatedate()
- {
- return createdate;
- }
- public void setUpdaterCode(Long updaterCode)
- {
- this.updaterCode = updaterCode;
- }
- public Long getUpdaterCode()
- {
- return updaterCode;
- }
- public void setUpdatedate(Date updatedate)
- {
- this.updatedate = updatedate;
- }
- public Date getUpdatedate()
- {
- return updatedate;
- }
- public void setDeptId(Long deptId)
- {
- this.deptId = deptId;
- }
- public Long getDeptId()
- {
- return deptId;
- }
- public void setRemarks(String remarks)
- {
- this.remarks = remarks;
- }
- public String getRemarks()
- {
- return remarks;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("userUnit", getUserUnit())
- .append("userIds", getUserIds())
- .append("delFlag", getDelFlag())
- .append("createrCode", getCreaterCode())
- .append("createdate", getCreatedate())
- .append("updaterCode", getUpdaterCode())
- .append("updatedate", getUpdatedate())
- .append("deptId", getDeptId())
- .append("remarks", getRemarks())
- .toString();
- }
- }
|