This commit is contained in:
dute7liang
2024-01-01 21:41:13 +08:00
parent 0128d6437e
commit a39b919bae
39 changed files with 638 additions and 65 deletions

View File

@@ -41,9 +41,9 @@ public class Dynamic implements Serializable {
*/
private Integer isAttach;
/**
* 状态 0 审核中 1可用 2 不可用
* 状态 1 审核中 2 审核通过 3-审核不通过
*/
private Integer status;
private Integer auditStatus;
/**
* 排序字段
*/

View File

@@ -23,23 +23,19 @@ public class UserGreet implements Serializable {
*
*/
@TableId(value = "id")
private Integer id;
private Long id;
/**
*
*/
private Integer userId;
/**
* 招呼类型: 0文本 1 语音 2 图片
*/
private Integer type;
private Long userId;
/**
* 标题
*/
private String title;
/**
* 审核状态 0 审核中, 1 审核通过, 2 审核不通过
* 审核状态 1 审核中, 2 审核通过, 3 审核不通过
*/
private Integer status;
private Integer auditStatus;
private LocalDateTime createTime;