jlutt@163.com %!s(int64=2) %!d(string=hai) anos
pai
achega
9266f1ea55

+ 12 - 0
ddCommon/src/main/java/com/dderp/common/entity/platform/PlatformInfo.java

@@ -15,6 +15,10 @@ public class PlatformInfo extends BaseEntity {
     @Comment("")
     private long id;
 
+    @RColumn("platformcode")
+    @Comment("平台编号,需要每个平台固定编号,写一个文档给各个平台固定,方便后续代码查找")
+    private String platformCode;
+
     @RColumn("platformname")
     @Comment("平台名称")
     private String platformName;
@@ -42,6 +46,14 @@ public class PlatformInfo extends BaseEntity {
         this.id = id;
     }
 
+    public String getPlatformCode() {
+        return platformCode;
+    }
+
+    public void setPlatformCode(String platformCode) {
+        this.platformCode = platformCode;
+    }
+
     public String getPlatformName() {
         return platformName;
     }