SpringBoot 在线协同办公小程序开发 全栈式项目实战


SpringBoot 在线协同办公小程序开发 全栈式项目实战


V:ititit111222333


/**
* 编码
*/
@Unique("编码不能重复")
@TableField("tax_code")
private String taxCode;

/**
* 税收分类编码
*/
@Unique("税收分类编码不能重复")
@TableField("tax_category_code")
private String taxCategoryCode;

/**
* 税务名称
*/
@TableField("tax_name")
private String taxName;

/**
* 简称
*/
@TableField("short_name")
private String shortName;

/**
* 增值税税率百分比值,多个用","隔开
*/
@TableField("tax_rate_percentage")
private String taxRatePercentage;

/**
* 增值税特殊管理
*/
@TableField("special_control")
private String specialControl;

/**
* 标记是否汇总项,0 - 否,1 - 是
*/
@TableField("summary")
private Integer summary;

/**
* 描述
*/
@TableField("description")
private String description;

/**
* 航信编码
*/
@TableField("hx_code")
private String hxCode;

/**
* 数据状态,0 - 无效,1 - 有效
*/
@TableField("state")
private Integer state;


上一篇:SpringBoot中的自动代码生成 - 基于Mybatis-Plus


下一篇:SpringBoot 在线协同办公小程序开发 全栈式项目实战