bug fix:county name is not unique value

This commit is contained in:
Cauchy
2023-10-24 14:33:16 +08:00
parent b57b196dd5
commit 7b9c6424ea
6 changed files with 55 additions and 12 deletions

View File

@@ -33,5 +33,17 @@ public class ConsigneeVo {
* 详细地址
*/
private String address;
/**
* 省份代码
*/
private String provinceCode;
/**
* 城市代码
*/
private String cityCode;
/**
* 区县代码
*/
private String countyCode;
}

View File

@@ -17,4 +17,12 @@ public class PrintTemplateVo {
* 面单
*/
private String printTemplate;
/**
* 快递公司代码
*/
private String expressCompanyCode;
/**
* 是否打印过
*/
private int templatedPrinted;
}