liujie
2025-07-24 536ef422b4f3d8bd0179fa664444a467913616c1
ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TUser.java
@@ -1,12 +1,13 @@
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>
@@ -126,6 +127,18 @@
    private Integer insertUser;
    private Date updateTime;
    private Integer updateUser;
   /**
    * 是否为顺风车司机(0否,1是)
    */
   private Integer isDriverRide;
   /**
    * 顺风车司机id
    */
   private Integer driverId;
   /**
    * 实名认证照片
    */
   private String certificationImg;
    public Integer getId() {
@@ -360,6 +373,30 @@
        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;