yanghb
2023-04-04 13dba09383f4ace5894685843fadb6e2e82d04b3
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=公务出现)
     */
    @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 +
                '}';
    }
}