Pu Zhibing
2025-08-04 4af0a2ddc8940cd38d0e602409cace1a7c50ea13
ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TSysIntegral.java
@@ -1,9 +1,11 @@
package com.stylefeng.guns.modular.system.model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
/**
@@ -16,59 +18,72 @@
 */
@TableName("t_sys_integral")
public class TSysIntegral extends Model<TSysIntegral> {
    private static final long serialVersionUID = 1L;
    /**
     * 主键id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 企业id
     */
    private Integer companyId;
    /**
     * 积分
     */
    private Integer integral;
    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 Integer getIntegral() {
        return integral;
    }
    public void setIntegral(Integer integral) {
        this.integral = integral;
    }
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
    @Override
    public String toString() {
        return "TSysIntegral{" +
        "id=" + id +
        ", companyId=" + companyId +
        ", integral=" + integral +
        "}";
    }
   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 Integer integral;
   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 Integer getIntegral() {
      return integral;
   }
   public void setIntegral(Integer integral) {
      this.integral = integral;
   }
   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 "TSysIntegral{" +
            "id=" + id +
            ", companyId=" + companyId +
            ", integral=" + integral +
            "}";
   }
}