package com.panzhihua.service_grid.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
/**
|
* 用户协议和隐私政策信息实体类
|
*
|
* @author cedoo email:cedoo(a)qq.com
|
* @version 1.0
|
* @since 1.0
|
* @date 2021-05-26
|
*/
|
@Data
|
@TableName("event_application_user_notice")
|
public class EventApplicationUserNoticeDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id 列: id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 应用ID 列: product_id
|
*/
|
private Integer productId;
|
/**
|
* 应用名称 列: product_name
|
*/
|
private String productName;
|
/**
|
* 通知行为(1、强制通知必须手段确定2、提示更新,自动消退) 列: action
|
*/
|
private Integer action;
|
/**
|
* 内容 列: content
|
*/
|
private String content;
|
/**
|
* 创建时间 列: create_at
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
/**
|
* 创建人 列: create_by
|
*/
|
private Long createBy;
|
}
|