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 +
|
'}';
|
}
|
}
|