编程语言
首页 > 编程语言> > SpringBoot 在线协同办公小程序开发 全栈式项目实战

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;


标签:编码,TableField,code,SpringBoot,程序开发,tax,private,全栈,String
来源: https://blog.51cto.com/u_15063244/2726356