Commit f3f9469d authored by 332784038@qq.com's avatar 332784038@qq.com

Merge remote-tracking branch 'origin/release' into release

parents e5d427d7 19894baa
-- 增加区号
alter table ecw_region add COLUMN area_code varchar(32) DEFAULT NULL comment '区号';
......@@ -59,4 +59,6 @@ public class RegionBaseVO {
private String importCurrency4;
@ApiModelProperty(value = "应收额币种", required = false)
private String importCurrency5;
@ApiModelProperty(value = "区号", required = false)
private String areaCode;
}
package cn.iocoder.yudao.module.ecw.dal.dataobject.region;
import io.swagger.annotations.ApiModelProperty;
import lombok.*;
import com.baomidou.mybatisplus.annotation.*;
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
......@@ -93,4 +92,8 @@ public class RegionDO extends BaseDO {
* 进口国应收额币种
*/
private String importCurrency5;
/**
* 区号
*/
private String areaCode;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment