package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
/**
|
* 平台协议
|
*/
|
@TableName("t_agreement")
|
public class Agreement extends BaseBean {
|
/**
|
* 使用范围(1=用户,2=司机)
|
*/
|
@TableField("useType")
|
private Integer useType;
|
/**
|
* 协议内容
|
*/
|
@TableField("content")
|
private String content;
|
/**
|
* 类型(1:隐私协议,2:用户协议,3:用户指南,4:法律条款,5:关于我们,6=注册协议,7=取消订单说明,8=充值领券规则设置,9=司机注册协议,10=改派说明,11=跨城出行乘车须知,12:常见问题,13:计价规则,14:包车协议,15:小件物流协议)
|
*/
|
@TableField("type")
|
private Integer type;
|
|
public Integer getUseType() {
|
return useType;
|
}
|
|
public void setUseType(Integer useType) {
|
this.useType = useType;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
@Override
|
public String toString() {
|
return "Agreement{" +
|
"useType=" + useType +
|
", content='" + content + '\'' +
|
", type=" + type +
|
'}';
|
}
|
}
|