| package com.stylefeng.guns.modular.system.model; | 
|   | 
| import com.baomidou.mybatisplus.annotations.TableField; | 
| import com.baomidou.mybatisplus.annotations.TableId; | 
| import com.baomidou.mybatisplus.annotations.TableName; | 
| import com.baomidou.mybatisplus.enums.IdType; | 
|   | 
| /** | 
|  * 订单改派金额设置 | 
|  */ | 
| @TableName("t_sys_reformist") | 
| public class SysReformist { | 
|     /** | 
|      * 主键 | 
|      */ | 
|     @TableId(value = "id", type = IdType.AUTO) | 
|     @TableField("id") | 
|     private Integer id; | 
|     /** | 
|      * 企业id | 
|      */ | 
|     @TableField("companyId") | 
|     private Integer companyId; | 
|     /** | 
|      * 金额 | 
|      */ | 
|     @TableField("money") | 
|     private Double money; | 
|     /** | 
|      * 专车是否允许改派(1=否,2=是) | 
|      * @return | 
|      */ | 
|     @TableField("isSpecialCar") | 
|     private Integer isSpecialCar; | 
|     /** | 
|      * 快车是否允许改派(1=否,2=是) | 
|      * @return | 
|      */ | 
|     @TableField("isTaxiCar") | 
|     private Integer isTaxiCar; | 
|   | 
|     public Integer getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(Integer id) { | 
|         this.id = id; | 
|     } | 
|   | 
|     public Integer getCompanyId() { | 
|         return companyId; | 
|     } | 
|   | 
|     public void setCompanyId(Integer companyId) { | 
|         this.companyId = companyId; | 
|     } | 
|   | 
|     public Double getMoney() { | 
|         return money; | 
|     } | 
|   | 
|     public void setMoney(Double money) { | 
|         this.money = money; | 
|     } | 
|   | 
|     public Integer getIsSpecialCar() { | 
|         return isSpecialCar; | 
|     } | 
|   | 
|     public void setIsSpecialCar(Integer isSpecialCar) { | 
|         this.isSpecialCar = isSpecialCar; | 
|     } | 
|   | 
|     public Integer getIsTaxiCar() { | 
|         return isTaxiCar; | 
|     } | 
|   | 
|     public void setIsTaxiCar(Integer isTaxiCar) { | 
|         this.isTaxiCar = isTaxiCar; | 
|     } | 
|   | 
|     @Override | 
|     public String toString() { | 
|         return "SysReformist{" + | 
|                 "id=" + id + | 
|                 ", companyId=" + companyId + | 
|                 ", money=" + money + | 
|                 ", isSpecialCar=" + isSpecialCar + | 
|                 ", isTaxiCar=" + isTaxiCar + | 
|                 '}'; | 
|     } | 
| } |