This commit is contained in:
dute7liang
2024-01-01 17:03:08 +08:00
parent 48d655f737
commit 0128d6437e
19 changed files with 276 additions and 29 deletions

View File

@@ -0,0 +1,46 @@
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;
}