xuhy
2023-08-11 1172de622b5e615677918d4fa0f02a9b2766171c
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
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
 
/**
 * 开通城市业务类型
 */
@TableName("t_open_city_business")
public class OpenCityBusiness extends BaseBean {
    /**
     * 业务类型(1=专车,2=出租车,3=跨城出行,4=同城小件物流,5=跨城小件物流,6=包车)
     */
    @TableField("businessType")
    private Integer businessType;
    /**
     * 排序
     */
    @TableField("sort")
    private Integer sort;
 
    public Integer getBusinessType() {
        return businessType;
    }
 
    public void setBusinessType(Integer businessType) {
        this.businessType = businessType;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    @Override
    public String toString() {
        return "OpenCityBusiness{" +
                "businessType=" + businessType +
                ", sort=" + sort +
                '}';
    }
}