init
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.ruoyi.xq.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 协议设置对象 xq_agreement_setting
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-04
|
||||
*/
|
||||
@Data
|
||||
@TableName("xq_agreement_setting")
|
||||
public class AgreementSetting implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
/**
|
||||
* 用户协议
|
||||
*/
|
||||
private String userAgreement;
|
||||
/**
|
||||
* 主播入驻协议
|
||||
*/
|
||||
private String anchorJoinAgreement;
|
||||
/**
|
||||
* 隐私协议
|
||||
*/
|
||||
private String privacyAgreement;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user