1
luofl
2025-04-03 399a115e33dfb070bb74540bad0ca66f799d53a7
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.dsh.course.entity;
 
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;
 
/**
 * 服务价格规则
 */
@Data
@TableName("t_system_price")
public class SystemPrice {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    /**
     * 业务类型(1=专车,4=小件物流-同城)
     Business types: (1=private car, 4=courier-same city)
     */
    @TableField("type")
    private Integer type;
    /**
     * 企业id
     */
    @TableField("companyId")
    private Integer companyId;
    /**
     * 服务车型设置
     */
    @TableField("serverCarModelId")
    private Integer serverCarModelId;
    /**
     * 价格规则,每个输入框为一个参数{"num1":1,"num2":2.3}
     */
    @TableField("content")
    private String content;
 
    @TableField("orderType")
    private Integer orderType;
    @TableField("cityId")
    private Integer cityId;
}