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
29
30
31
| package com.dsh.course.model.vo;
|
| import lombok.Data;
|
| /**
| * 服务价格规则
| */
| @Data
| public class SystemPriceRes {
| /**
| * 主键
| */
| private Integer id;
| /**
| * 业务类型(1=专车,4=小件物流-同城)
| Business types: (1=private car, 4=courier-same city)
| */
| private Integer type;
| /**
| * 企业id
| */
| private Integer companyId;
| /**
| * 服务车型设置
| */
| private Integer serverCarModelId;
| /**
| * 价格规则,每个输入框为一个参数{"num1":1,"num2":2.3}
| */
| private String content;
| }
|
|