| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.ruoyi.web.domain.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 应急指令负责人表
- *
- * @TableName emergency_user
- */
- @TableName(value = "emergency_user")
- @Data
- public class EmergencyUser implements Serializable {
- /**
- * ID
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 负责人ID
- */
- private Integer userId;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 修改时间
- */
- private Date updateTime;
- /**
- * 删除标志
- */
- @TableLogic
- @JsonIgnore
- private String delFlag;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|