weaver-hrm-salary/src/com/engine/salary/entity/taxrate/SysTaxRateBase.java

55 lines
934 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.engine.salary.entity.taxrate;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 系统内置的税率表
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SysTaxRateBase {
/**
* 创建时间
*/
private Date createTime;
/**
* 创建人
*/
private Long creator;
/**
* 是否已删除。0未删除、1已删除
*/
private Integer deleteType;
/**
* 描述
*/
private String description;
/**
* 主键
*/
private Long id;
/**
* 名称
*/
private String name;
/**
* 是否是系统默认的。0自定义、1系统默认
*/
private Byte systemType;
/**
* 租户ID
*/
private String tenantKey;
/**
* 更新时间
*/
private Date updateTime;
}