Pu Zhibing
2025-06-16 cf20d164dadcf7544921a7138d91d3d16407673e
ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/User.java
@@ -1,7 +1,7 @@
package com.stylefeng.guns.modular.system.model;
import com.baomidou.mybatisplus.activerecord.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;
@@ -91,6 +91,21 @@
    * 对象ID
    */
   private Integer objectId;
   /**
    * 中台员工ID
    */
   @TableField("empId")
   private Long empId;
   /**
    * 中台员工所属企业ID
    */
   @TableField("enterId")
   private Long enterId;
   /**
    * 中台员工所属企业编号
    */
   @TableField("entercode")
   private String entercode;
   public Integer getRoleType() {
      return roleType;
@@ -228,6 +243,30 @@
      this.version = version;
   }
   public Long getEmpId() {
      return empId;
   }
   public void setEmpId(Long empId) {
      this.empId = empId;
   }
   public Long getEnterId() {
      return enterId;
   }
   public void setEnterId(Long enterId) {
      this.enterId = enterId;
   }
   public String getEntercode() {
      return entercode;
   }
   public void setEntercode(String entercode) {
      this.entercode = entercode;
   }
   @Override
   protected Serializable pkVal() {
      return this.id;