40 lines
727 B
Java
40 lines
727 B
Java
package com.ruoyi.xq.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 协议设置对象 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;
|
|
|
|
}
|