47 lines
866 B
Java
47 lines
866 B
Java
package com.ruoyi.cai.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 群发审核对象 cai_user_greet
|
|
*
|
|
* @author 77
|
|
* @date 2024-01-01
|
|
*/
|
|
@Data
|
|
@TableName("cai_user_greet")
|
|
public class UserGreet implements Serializable {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId(value = "id")
|
|
private Integer id;
|
|
/**
|
|
*
|
|
*/
|
|
private Integer userId;
|
|
/**
|
|
* 招呼类型: 0文本 1 语音 2 图片
|
|
*/
|
|
private Integer type;
|
|
/**
|
|
* 标题
|
|
*/
|
|
private String title;
|
|
/**
|
|
* 审核状态 0 审核中, 1 审核通过, 2 审核不通过
|
|
*/
|
|
private Integer status;
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
}
|