1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.dsh.course.entity;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| /**
| * 平台协议
| */
| @Data
| @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;
| }
|
|