| | |
| | | package com.stylefeng.guns.modular.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | private Integer insertUser; |
| | | private Date updateTime; |
| | | private Integer updateUser; |
| | | /** |
| | | * 是否为顺风车司机(0否,1是) |
| | | */ |
| | | private Integer isDriverRide; |
| | | /** |
| | | * 顺风车司机id |
| | | */ |
| | | private Integer driverId; |
| | | /** |
| | | * 实名认证照片 |
| | | */ |
| | | private String certificationImg; |
| | | |
| | | |
| | | public Integer getId() { |
| | |
| | | this.updateUser = updateUser; |
| | | } |
| | | |
| | | public Integer getIsDriverRide() { |
| | | return isDriverRide; |
| | | } |
| | | |
| | | public void setIsDriverRide(Integer isDriverRide) { |
| | | this.isDriverRide = isDriverRide; |
| | | } |
| | | |
| | | public Integer getDriverId() { |
| | | return driverId; |
| | | } |
| | | |
| | | public void setDriverId(Integer driverId) { |
| | | this.driverId = driverId; |
| | | } |
| | | |
| | | public String getCertificationImg() { |
| | | return certificationImg; |
| | | } |
| | | |
| | | public void setCertificationImg(String certificationImg) { |
| | | this.certificationImg = certificationImg; |
| | | } |
| | | |
| | | @Override |
| | | protected Serializable pkVal() { |
| | | return this.id; |