Java异常与调优一站式解决方案
v: ititit111222333
/**
* id主键
*/
@ApiModelProperty(value = "id主键", name = "id")
private Long id;
/**
* 编码
*/
@ExcelProperty(value = "编码", index = 0)
@ApiModelProperty(value = "编码", name = "taxCode")
private String taxCode;
/**
* 税局分类编码
*/
@ExcelProperty(value = "税局分类编码", index = 1)
@ApiModelProperty(value = "税局分类编码", name = "taxCode")
private String taxCategoryCode;
/**
* 税务名称
*/
@ExcelProperty(value = "名称", index = 2)
@ApiModelProperty(value = "税务名称", name = "taxName")
private String taxName;
/**
* 简称
*/
@ExcelProperty(value = "简称", index = 3)
@ApiModelProperty(value = "简称", name = "shortName")
private String shortName;
/**
* 描述
*/
@ExcelProperty(value = "说明", index = 4)
@ApiModelProperty(value = "描述", name = "description")
private String description;
/**
* 增值税税率百分比值,多个用,隔开
*/
@ApiModelProperty(value = "增值税税率百分比值,多个用,隔开", name = "taxRatePercentage")
private String taxRatePercentage;
/**
* 增值税税率百分比值,多个用,隔开
*/
@DictField
@ExcelProperty(value = "税率", index = 5)
@ApiModelProperty(value = "税率数据字典名称", name = "taxRatePercentageName")
private String taxRatePercentageName;
/**
* 增值税特殊管理
*/
@ExcelProperty(value = "增值税特殊管理", index = 6)
@ApiModelProperty(value = "增值税特殊管理", name = "specialControl")
private String specialControl;
/**
* 标记是否汇总项,0 - 否,1 - 是
*/
@ExcelProperty(value = "汇总项", index = 7, converter = CustomYesOrNoConverter.class)
@ApiModelProperty(value = "标记是否汇总项,0 - 否,1 - 是", name = "summary")
private Integer summary;
/**
* 数据状态,0 - 无效,1 - 有效
*/
@ExcelProperty(value = "可用状态", index = 8, converter = CustomStateConverter.class)
@ApiModelProperty(value = "数据状态,0 - 无效,1 - 有效", name = "state")
private Integer state;
/**
* 航信编码
*/
@ExcelProperty(value = "航信编码", index = 9)
@ApiModelProperty(value = "航信编码", name = "hxCode")
private String hxCode;
/**
* 是否引用状态,0 - 无效,1 - 有效
*/
@ApiModelProperty(value = "是否引用状态,0 - 无引用,1 - 有引用", name = "relationTag")
private Integer relationTag;
/**
* 关联税收分类编码
*/
@ExcelProperty(value = "分类编码", index = 1)
@ApiModelProperty(value = "关联税收分类编码", name = "relationCategory")
private String relationCategoryCode;
/**
* 关联税收分类名称
*/
@ApiModelProperty(value = "关联税收分类名称", name = "relationCategoryName")
private String relationCategoryName;