|
@@ -12,39 +12,39 @@ import java.time.LocalDateTime;
|
|
|
@ExcelIgnoreUnannotated
|
|
|
public class ExpenseItemRespVO {
|
|
|
|
|
|
- @Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "4075")
|
|
|
- @ExcelProperty("主键")
|
|
|
+ @Schema(description = "主键")
|
|
|
+ // @ExcelProperty("主键")
|
|
|
private Long id;
|
|
|
|
|
|
- @Schema(description = "报销类型主键id", requiredMode = Schema.RequiredMode.REQUIRED, example = "2556")
|
|
|
- @ExcelProperty("报销类型主键id")
|
|
|
+ @Schema(description = "报销类型主键id")
|
|
|
+ // @ExcelProperty("报销类型主键id")
|
|
|
private Long expenseTypeId;
|
|
|
|
|
|
- @Schema(description = "报销类型uuid", example = "14367")
|
|
|
- @ExcelProperty("报销类型uuid")
|
|
|
+ @Schema(description = "报销类型uuid")
|
|
|
+ // @ExcelProperty("报销类型uuid")
|
|
|
private String expenseTypeUuid;
|
|
|
|
|
|
- @Schema(description = "费用项目uuid", example = "10133")
|
|
|
- @ExcelProperty("费用项目uuid")
|
|
|
+ @Schema(description = "费用项目uuid")
|
|
|
+ // @ExcelProperty("费用项目uuid")
|
|
|
private String expenseItemUuid;
|
|
|
|
|
|
- @Schema(description = "费用项目", example = "芋艿")
|
|
|
+ @Schema(description = "费用项目")
|
|
|
@ExcelProperty("费用项目")
|
|
|
private String name;
|
|
|
|
|
|
@Schema(description = "备注")
|
|
|
- @ExcelProperty("备注")
|
|
|
+ // @ExcelProperty("备注")
|
|
|
private String remarks;
|
|
|
|
|
|
@Schema(description = "创建者")
|
|
|
- @ExcelProperty("创建者id")
|
|
|
+ // @ExcelProperty("创建者id")
|
|
|
private Long creator;
|
|
|
|
|
|
@Schema(description = "创建员工姓名")
|
|
|
- @ExcelProperty("创建员工id")
|
|
|
+ @ExcelProperty("创建人")
|
|
|
private String createEmployeeName;
|
|
|
|
|
|
- @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
|
+ @Schema(description = "创建时间")
|
|
|
@ExcelProperty("创建时间")
|
|
|
private LocalDateTime createTime;
|
|
|
|