|
|
@@ -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;
|
|
|
}
|