This commit is contained in:
张良(004796)
2023-12-22 14:28:40 +08:00
parent 43bbc2698c
commit 87631588e5
7 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
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;
import java.util.Date;
/**
* 播主申请管理对象 cai_anchor_apply
*
* @author 77
* @date 2023-12-22
*/
@Data
@TableName("cai_anchor_apply")
public class CaiAnchorApply implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Integer id;
/**
* 用户ID
*/
private Integer userId;
/**
* 同意协议 0 不同意 1 同意
*/
private Integer agreeProtocol;
/**
* 审核状态 0 未申请 1 审核中 2 审核不通过 3 审核通过
*/
private Integer status;
/**
*
*/
private Integer auditCount;
/**
* 审核时间
*/
private LocalDateTime auditTime;
/**
* 审核备注
*/
private String auditRemark;
private LocalDateTime createTime;
}