12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package org.jeecg.modules.system.entity;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import org.jeecg.common.aspect.annotation.Dict;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 租户信息
- */
- @Data
- @TableName("sys_tenant")
- public class SysTenant implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 编码
- */
- private Integer id;
-
- /**
- * 名称
- */
- private String name;
-
- /**
- * 创建人
- */
- private String createBy;
- /**
- * 创建时间
- */
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private Date createTime;
- /**
- * 开始时间
- */
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private Date beginDate;
- /**
- * 结束时间
- */
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- private Date endDate;
- /**
- * 状态 1正常 0冻结
- */
- @Dict(dicCode = "tenant_status")
- private Integer status;
- }
|