1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.usky.iot.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- * 消息接收表
- * </p>
- *
- * @author han
- * @since 2024-04-19
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class MceReceive implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 接收人ID
- */
- private Integer receiverId;
- /**
- * 接收人
- */
- private String receiverName;
- /**
- * 消息类型
- */
- private String infoType;
- /**
- * 是否已读;0、未读,1、已读
- */
- private Integer readFlag;
- /**
- * 消息内容ID
- */
- private Integer contentId;
- /**
- * 子模块记录ID
- */
- private Integer moduleId;
- /**
- * 租户号
- */
- private Integer tenantId;
- /**
- * 组织机构ID
- */
- private Integer deptId;
- /**
- * 创建人
- */
- private String createBy;
- /**
- * 创建时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime createTime;
- /**
- * 更新人
- */
- private String updateBy;
- /**
- * 更新时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime updateTime;
- }
|