| 123456789101112131415161718192021 |
- package com.xjrsoft.module.ledger.vo;
- import com.alibaba.excel.annotation.ExcelProperty;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 台账配置表分页查询入参
- * @Author dzx
- * @Date: 2024-03-06
- * @Version 1.0
- */
- @Data
- public class LedgerStatisticsOvertimeVo extends LedgerStatisticsPageVo{
- @ExcelProperty("加班天数")
- @ApiModelProperty("加班天数")
- private String totalDays;
- }
|