package com.ruoyi.other.api.model;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/** 协议
|
* @author zhibing.pu
|
* @Date 2024/11/21 10:44
|
*/
|
@Data
|
@TableName("t_agreement")
|
public class Agreement {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 类型(1=用户协议,2=隐私协议,3=技师上门免责声明,4=注销协议,5门店提现免责声明)
|
*/
|
@TableField("type")
|
private Integer type;
|
/**
|
* 协议内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 添加时间
|
*/
|
@TableField("create_time")
|
private LocalDateTime createTime;
|
}
|