From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/entity/system/SystemClientParams.java |  248 ++++++++++++++++++++++++------------------------
 1 files changed, 124 insertions(+), 124 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/system/SystemClientParams.java b/fanli/src/main/java/com/yeshi/fanli/entity/system/SystemClientParams.java
index b670d8c..65c1533 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/system/SystemClientParams.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/system/SystemClientParams.java
@@ -1,124 +1,124 @@
-package com.yeshi.fanli.entity.system;
-
-import java.io.Serializable;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-import com.google.gson.annotations.Expose;
-
-/**
- * 锟�?锟斤拷杩斿洖缁欏鎴风鐨勫弬锟�?
- * 
- * @author Administrator
- *
- */
-@Table("yeshi_ec_system_clientparams")
-public class SystemClientParams implements Serializable {
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = 1L;
-
-	@Column(name = "id")
-	private Long id;
-
-	@Column(name = "systemid")
-	private BusinessSystem system;
-
-	@Column(name = "key")
-	@Expose
-	private String key;
-
-	@Expose
-	@Column(name = "value")
-	private String value;
-
-	@Expose
-	@Column(name = "name")
-	private String name;
-
-	@Expose
-	@Column(name = "updatetime")
-	private Long updatetime;
-
-	@Column(name = "min_version")
-	private Integer minVersion;
-	
-	
-	private String version;
-
-	public String getVersion() {
-		return version;
-	}
-
-	public void setVersion(String version) {
-		this.version = version;
-	}
-
-	public Integer getMinVersion() {
-		return minVersion;
-	}
-
-	public void setMinVersion(Integer minVersion) {
-		this.minVersion = minVersion;
-	}
-
-	public SystemClientParams() {
-	}
-
-	public SystemClientParams(BusinessSystem system, String key, String value) {
-		super();
-		this.system = system;
-		this.key = key;
-		this.value = value;
-	}
-
-	public Long getId() {
-		return id;
-	}
-
-	public void setId(Long id) {
-		this.id = id;
-	}
-
-	public BusinessSystem getSystem() {
-		return system;
-	}
-
-	public void setSystem(BusinessSystem system) {
-		this.system = system;
-	}
-
-	public String getKey() {
-		return key;
-	}
-
-	public void setKey(String key) {
-		this.key = key;
-	}
-
-	public String getValue() {
-		return value;
-	}
-
-	public void setValue(String value) {
-		this.value = value;
-	}
-
-	public String getName() {
-		return name;
-	}
-
-	public void setName(String name) {
-		this.name = name;
-	}
-
-	public Long getUpdatetime() {
-		return updatetime;
-	}
-
-	public void setUpdatetime(Long updatetime) {
-		this.updatetime = updatetime;
-	}
-}
+package com.yeshi.fanli.entity.system;
+
+import java.io.Serializable;
+
+import com.yeshi.fanli.entity.SystemEnum;
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+import com.google.gson.annotations.Expose;
+
+/**
+ * 锟�?锟斤拷杩斿洖缁欏鎴风鐨勫弬锟�?
+ * 
+ * @author Administrator
+ *
+ */
+@Table("yeshi_ec_system_clientparams")
+public class SystemClientParams implements Serializable {
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 1L;
+
+	@Column(name = "id")
+	private Long id;
+
+	@Column(name = "systemid")
+	private BusinessSystem system;
+
+	@Column(name = "key")
+	@Expose
+	private String key;
+
+	@Expose
+	@Column(name = "value")
+	private String value;
+
+//	@Expose
+	@Column(name = "name")
+	private String name;
+
+//	@Expose
+	@Column(name = "updatetime")
+	private Long updatetime;
+
+	@Column(name = "min_version")
+	private Integer minVersion;
+
+	private String version;
+
+	public String getVersion() {
+		return version;
+	}
+
+	public void setVersion(String version) {
+		this.version = version;
+	}
+
+	public Integer getMinVersion() {
+		return minVersion;
+	}
+
+	public void setMinVersion(Integer minVersion) {
+		this.minVersion = minVersion;
+	}
+
+	public SystemClientParams() {
+	}
+
+	public SystemClientParams(BusinessSystem system, String key, String value) {
+		super();
+		this.system = system;
+		this.key = key;
+		this.value = value;
+	}
+
+	public Long getId() {
+		return id;
+	}
+
+	public void setId(Long id) {
+		this.id = id;
+	}
+
+	public BusinessSystem getSystem() {
+		return system;
+	}
+
+	public void setSystem(BusinessSystem system) {
+		this.system = system;
+	}
+
+	public String getKey() {
+		return key;
+	}
+
+	public void setKey(String key) {
+		this.key = key;
+	}
+
+	public String getValue() {
+		return value;
+	}
+
+	public void setValue(String value) {
+		this.value = value;
+	}
+
+	public String getName() {
+		return name;
+	}
+
+	public void setName(String name) {
+		this.name = name;
+	}
+
+	public Long getUpdatetime() {
+		return updatetime;
+	}
+
+	public void setUpdatetime(Long updatetime) {
+		this.updatetime = updatetime;
+	}
+}

--
Gitblit v1.8.0