|
|
@@ -22,6 +22,10 @@ public class StorePlatform extends BaseEntity {
|
|
|
@Comment("平台档案id")
|
|
|
private long idPlatformInfo;
|
|
|
|
|
|
+ @RColumn("platformcode")
|
|
|
+ @Comment("从平台档案冗余过来,平台编号,需要每个平台固定编号,写一个文档给各个平台固定,方便后续代码查找")
|
|
|
+ private String platformCode;
|
|
|
+
|
|
|
@RColumn("platformname")
|
|
|
@Comment("平台名称")
|
|
|
private String platformName;
|
|
|
@@ -61,6 +65,14 @@ public class StorePlatform extends BaseEntity {
|
|
|
this.idPlatformInfo = idPlatformInfo;
|
|
|
}
|
|
|
|
|
|
+ public String getPlatformCode() {
|
|
|
+ return platformCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatformCode(String platformCode) {
|
|
|
+ this.platformCode = platformCode;
|
|
|
+ }
|
|
|
+
|
|
|
public String getPlatformName() {
|
|
|
return platformName;
|
|
|
}
|