6 天以前 ea5a55deffa6d33048a1f7e03b71424c8add5e31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.ruoyi.account.bean.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
public class AccountSubjectImportDto {
 
    @Schema(description = "科目编码")
    @Excel(name = "科目编码")
    private String subjectCode;
 
    @Schema(description = "科目名称")
    @Excel(name = "科目名称")
    private String subjectName;
 
    @Schema(description = "科目类型")
    @Excel(name = "科目类型")
    private String subjectType;
 
    @Schema(description = "余额方向")
    @Excel(name = "余额方向")
    private String balanceDirection;
 
    /**
     * 状态 0启用 1禁用
     */
    @Schema(description = "状态")
    @Excel(name = "状态",readConverterExp = "0=启用,1=禁用")
    private Integer status;
 
    @Schema(description = "备注")
    @Excel(name = "备注")
    private String remark;
}