| | |
| | | package com.stylefeng.guns.modular.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @TableName("t_sys_reformist") |
| | | public class TSysReformist extends Model<TSysReformist> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 企业id |
| | | */ |
| | | private Integer companyId; |
| | | /** |
| | | * 金额 |
| | | */ |
| | | private BigDecimal money; |
| | | /** |
| | | * 快车改派 1=否 2=是 |
| | | */ |
| | | private Integer isSpecialCar; |
| | | /** |
| | | * 出租车改派 1=否 2=是 |
| | | */ |
| | | private Integer isTaxiCar; |
| | | |
| | | 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; |
| | | } |
| | | |
| | | 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 BigDecimal getMoney() { |
| | | return money; |
| | | } |
| | | |
| | | public void setMoney(BigDecimal money) { |
| | | this.money = money; |
| | | } |
| | | |
| | | @Override |
| | | protected Serializable pkVal() { |
| | | return this.id; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "TSysReformist{" + |
| | | "id=" + id + |
| | | ", companyId=" + companyId + |
| | | ", money=" + money + |
| | | "}"; |
| | | } |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 企业id |
| | | */ |
| | | private Integer companyId; |
| | | /** |
| | | * 开通城市id |
| | | */ |
| | | @TableField("openCityId") |
| | | private Integer openCityId; |
| | | /** |
| | | * 金额 |
| | | */ |
| | | private BigDecimal money; |
| | | /** |
| | | * 快车改派 1=否 2=是 |
| | | */ |
| | | private Integer isSpecialCar; |
| | | /** |
| | | * 出租车改派 1=否 2=是 |
| | | */ |
| | | private Integer isTaxiCar; |
| | | |
| | | 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; |
| | | } |
| | | |
| | | 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 BigDecimal getMoney() { |
| | | return money; |
| | | } |
| | | |
| | | public void setMoney(BigDecimal money) { |
| | | this.money = money; |
| | | } |
| | | |
| | | public Integer getOpenCityId() { |
| | | return openCityId; |
| | | } |
| | | |
| | | public void setOpenCityId(Integer openCityId) { |
| | | this.openCityId = openCityId; |
| | | } |
| | | |
| | | @Override |
| | | protected Serializable pkVal() { |
| | | return this.id; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "TSysReformist{" + |
| | | "id=" + id + |
| | | ", companyId=" + companyId + |
| | | ", money=" + money + |
| | | "}"; |
| | | } |
| | | } |