## 去掉国家和行政区划点亮字段;
This commit is contained in:
parent
bc63691d9f
commit
387ce2fc22
|
@ -67,10 +67,4 @@ public class CountryDTO implements Serializable {
|
|||
*/
|
||||
private Integer languages;
|
||||
|
||||
|
||||
/**
|
||||
* 国家所属语种
|
||||
*/
|
||||
private String lightName;
|
||||
|
||||
}
|
||||
|
|
|
@ -52,10 +52,6 @@ public class MemberDataDTO implements Serializable {
|
|||
* 结算国家方形国旗
|
||||
*/
|
||||
private String settleCountrySquareIcon;
|
||||
/**
|
||||
* 结算国家点亮名称
|
||||
*/
|
||||
private String settleCountryLightName;
|
||||
/**
|
||||
* 结算国家地图
|
||||
*/
|
||||
|
|
|
@ -74,7 +74,6 @@ public class MemberInfoServiceImpl implements IMemberInfoService {
|
|||
.pkSettleCountryVal(pkSettleCountryVal)
|
||||
.settleCountryCircularIcon(memberDataDTO.getSettleCountryCircularIcon())
|
||||
.settleCountrySquareIcon(memberDataDTO.getSettleCountrySquareIcon())
|
||||
.settleCountryLightName(memberDataDTO.getSettleCountryLightName())
|
||||
.settleCountryImg(memberDataDTO.getSettleCountryImg())
|
||||
.pkGradeId(cuMember.getPkSettleGrade())
|
||||
.pkGrade(memberDataDTO.getPkGrade())
|
||||
|
|
|
@ -68,10 +68,6 @@ public class MemberInfoVO {
|
|||
* 结算国家方形国旗
|
||||
*/
|
||||
private String settleCountrySquareIcon;
|
||||
/**
|
||||
* 结算国家点亮名称
|
||||
*/
|
||||
private String settleCountryLightName;
|
||||
/*
|
||||
* 结算国家地图
|
||||
*/
|
||||
|
|
|
@ -54,7 +54,6 @@ public class CommonServiceProvider implements ICommonServiceApi {
|
|||
memberDataDTO.setPkSettleCountryVal(bdSettleCountry.getShortName());
|
||||
memberDataDTO.setSettleCountryCircularIcon(bdSettleCountry.getNationalFlag1());
|
||||
memberDataDTO.setSettleCountrySquareIcon(bdSettleCountry.getNationalFlag2());
|
||||
memberDataDTO.setSettleCountryLightName(bdSettleCountry.getLightName());
|
||||
memberDataDTO.setSettleCountryImg(bdSettleCountry.getImg());
|
||||
memberDataDTO.setPkSettleCountryVal(bdSettleCountry.getShortName());
|
||||
}
|
||||
|
|
|
@ -11,12 +11,7 @@ import lombok.Data;
|
|||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 国家表
|
||||
* </p>
|
||||
*
|
||||
* @author hzs
|
||||
* @since 2022-08-03
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
|
@ -55,7 +50,6 @@ public class BdCountry implements Serializable {
|
|||
private String codeThree;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 国旗
|
||||
*/
|
||||
|
@ -133,13 +127,6 @@ public class BdCountry implements Serializable {
|
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date effectiveDate;
|
||||
|
||||
/**
|
||||
* 国家所属语种
|
||||
*/
|
||||
@TableField("LIGHT_NAME")
|
||||
private String lightName;
|
||||
|
||||
|
||||
/**
|
||||
* 国家图片
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue