|
@@ -33,12 +33,11 @@ public class BizCompany extends BaseEntity
|
|
|
private String category;
|
|
|
|
|
|
/** 客户编码 */
|
|
|
- @Excel(name = "客户编码")
|
|
|
@ApiModelProperty(value = "客户编码")
|
|
|
private String code;
|
|
|
|
|
|
/** 客户名称 */
|
|
|
- @Excel(name = "客户名称",width = 35)
|
|
|
+ @Excel(name = "客户名称",width = 50)
|
|
|
@ApiModelProperty(value = "客户名称")
|
|
|
@Size(min = 0, max = 100)
|
|
|
private String name;
|
|
@@ -222,7 +221,7 @@ public class BizCompany extends BaseEntity
|
|
|
private Long taxDeclarationCategoryId;
|
|
|
|
|
|
/** 是否零申报 */
|
|
|
- @Excel(name = "是否零申报")
|
|
|
+ @Excel(name = "是否零申报",readConverterExp = "0=否,1=是")
|
|
|
@ApiModelProperty(value = "是否零申报")
|
|
|
private Integer isZero;
|
|
|
|