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;
|
}
|