2024-01-23 16:42:27 +08:00

50 lines
933 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.ics.admin.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ics.common.core.domain.BaseEntity;
import com.ics.common.enums.ExpenseType;
import lombok.Data;
/**
* 费项配置对象 ics_expense_settings
*
* @author ics
* @date 2021-03-24
*/
@Data
@TableName("ics_expense_settings")
public class ExpenseSettings extends BaseEntity<ExpenseSettings> {
private static final long serialVersionUID = 1L;
/**
* 费项名称
*/
private String name;
/**
* 费项类型0-系统费项1-周期性费项2-一次性费项)
*/
private ExpenseType type;
/**
* 计量单位(度,平方米,吨,立方米,千克)
*/
private String unitsCode;
/**
* 是否启用
*/
private Boolean isEnabled;
/**
* 税率%
*/
private Double taxFee;
/**
* 备注
*/
private String memo;
}