多语言-礼物增加分区标识

This commit is contained in:
liaozetao
2024-04-09 17:39:37 +08:00
committed by khalil
parent 5d012eb3ff
commit 06da264174

View File

@@ -87,6 +87,11 @@ public class Gift {
*/
private Integer openDeviate;
/**
* 分区标识 0b1 英语区 0b10 阿拉伯区 0b100 华语区
*/
private Integer partitionFlag;
public Integer getOpenDeviate() {
return openDeviate;
}
@@ -400,4 +405,12 @@ public class Gift {
public void setRoomExclude(Boolean roomExclude) {
this.roomExclude = roomExclude;
}
public Integer getPartitionFlag() {
return partitionFlag;
}
public void setPartitionFlag(Integer partitionFlag) {
this.partitionFlag = partitionFlag;
}
}