mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 07:19:36 +08:00
50 lines
933 B
Java
50 lines
933 B
Java
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;
|
||
|
||
}
|