From 5367f2172a955113068d6c97cde0b78c6c85fdf8 Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期二, 05 八月 2025 14:00:02 +0800
Subject: [PATCH] 改派

---
 ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TPhone.java |  169 ++++++++++++++++++++++++++++++-------------------------
 1 files changed, 92 insertions(+), 77 deletions(-)

diff --git a/ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TPhone.java b/ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TPhone.java
index 2a7786f..8212bf5 100644
--- a/ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TPhone.java
+++ b/ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TPhone.java
@@ -1,7 +1,9 @@
 package com.stylefeng.guns.modular.system.model;
 
 import com.baomidou.mybatisplus.activerecord.Model;
+import com.baomidou.mybatisplus.annotations.TableField;
 import com.baomidou.mybatisplus.annotations.TableName;
+
 import java.io.Serializable;
 
 /**
@@ -14,81 +16,94 @@
  */
 @TableName("t_phone")
 public class TPhone extends Model<TPhone> {
-
-    private static final long serialVersionUID = 1L;
-
-    private Integer id;
-    /**
-     * 数据类型(1:报警电话,2:客服电话)
-     */
-    private Integer type;
-    /**
-     * 是否是平台(1=是,2=否)
-     */
-    private Integer platform;
-    /**
-     * 电话号码
-     */
-    private String phone;
-    /**
-     * 企业id
-     */
-    private Integer companyId;
-
-
-    public Integer getId() {
-        return id;
-    }
-
-    public void setId(Integer id) {
-        this.id = id;
-    }
-
-    public Integer getType() {
-        return type;
-    }
-
-    public void setType(Integer type) {
-        this.type = type;
-    }
-
-    public Integer getPlatform() {
-        return platform;
-    }
-
-    public void setPlatform(Integer platform) {
-        this.platform = platform;
-    }
-
-    public String getPhone() {
-        return phone;
-    }
-
-    public void setPhone(String phone) {
-        this.phone = phone;
-    }
-
-    public Integer getCompanyId() {
-        return companyId;
-    }
-
-    public void setCompanyId(Integer companyId) {
-        this.companyId = companyId;
-    }
-
-    @Override
-    protected Serializable pkVal() {
-        return this.id;
-    }
-
-    @Override
-    public String toString() {
-        return "TPhone{" +
-        "id=" + id +
-        ", type=" + type +
-        ", platform=" + platform +
-        ", phone=" + phone +
-        ", companyId=" + companyId +
-        "}";
-    }
+	
+	private static final long serialVersionUID = 1L;
+	
+	private Integer id;
+	/**
+	 * 数据类型(1:报警电话,2:客服电话)
+	 */
+	private Integer type;
+	/**
+	 * 是否是平台(1=是,2=否)
+	 */
+	private Integer platform;
+	/**
+	 * 电话号码
+	 */
+	private String phone;
+	/**
+	 * 企业id
+	 */
+	private Integer companyId;
+	/**
+	 * 开通城市id
+	 */
+	@TableField("openCityId")
+	private Integer openCityId;
+	
+	
+	public Integer getId() {
+		return id;
+	}
+	
+	public void setId(Integer id) {
+		this.id = id;
+	}
+	
+	public Integer getType() {
+		return type;
+	}
+	
+	public void setType(Integer type) {
+		this.type = type;
+	}
+	
+	public Integer getPlatform() {
+		return platform;
+	}
+	
+	public void setPlatform(Integer platform) {
+		this.platform = platform;
+	}
+	
+	public String getPhone() {
+		return phone;
+	}
+	
+	public void setPhone(String phone) {
+		this.phone = phone;
+	}
+	
+	public Integer getCompanyId() {
+		return companyId;
+	}
+	
+	public void setCompanyId(Integer companyId) {
+		this.companyId = companyId;
+	}
+	
+	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 "TPhone{" +
+				"id=" + id +
+				", type=" + type +
+				", platform=" + platform +
+				", phone=" + phone +
+				", companyId=" + companyId +
+				"}";
+	}
 }

--
Gitblit v1.7.1