package com.ruoyi.cs.domain; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; import lombok.Getter; import lombok.Setter; import lombok.ToString; import java.util.Date; /** * 单位信息对象 cs_company * * @author ruoyi * @date 2024-05-31 */ @Getter @Setter @ToString public class CsCompany extends BaseEntity { private static final long serialVersionUID = 1L; /** 单位信息主键ID */ private String companyId; /** 单位名 */ @Excel(name = "单位名称") private String companyName; /** 上级ID */ // @Excel(name = "上级ID") private String parentId; /** 单位类别ID */ // @Excel(name = "单位类别ID") private String companyClassId; /** 单位类别 */ @Excel(name = "单位类别") private String companyClass; /** 单位状态:0-正常,1-停用 */ // @Excel(name = "单位状态:0-正常,1-停用") private String companyStatus; /** 省份ID */ // @Excel(name = "省份ID") private Long provinceId; /** 省份名 */ // @Excel(name = "省份名") private String provinceName; /** 城市ID */ // @Excel(name = "城市ID") private Long cityId; /** 城市名 */ // @Excel(name = "城市名") private String cityName; /** 区县ID */ // @Excel(name = "区县ID") private Long areaId; /** 区县名 */ // @Excel(name = "区县名") private String areaName; /** 地址 */ @Excel(name = "地址") private String address; /** 单位负责人ID */ // @Excel(name = "单位负责人ID") private String leaderId; /** 单位负责人 */ @Excel(name = "单位负责人") private String leaderName; /** 手机号 */ @Excel(name = "手机号") private String phone; /** 单位成果数量 */ @Excel(name = "单位成果数量") private Integer achievementNum; /** 成员数量 */ @Excel(name = "成员数量") private Integer userNum; /** 内容 */ // @Excel(name = "内容") private String content; /** 排序 */ // @Excel(name = "排序") private Integer sort; /** 状态:0-正常,1-隐藏 */ // @Excel(name = "状态:0-正常,1-隐藏") private String status; /** 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "录入时间", dateFormat = "yyyy-MM-dd") private Date createAt; /** 修改时间 */ @JsonFormat(pattern = "yyyy-MM-dd") // @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd") private Date updateAt; /** 备注 */ @Excel(name = "备注") private String remarks; /** 删除标记:0-正常,1-删除 */ // @Excel(name = "删除标记:0-正常,1-删除") private String delFlag; private String beginCreateAt; private String endCreateAt; }