StatisticsDto.java 315 B

1234567891011121314151617181920
  1. package com.xjrsoft.module.databoard.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. /**
  5. * @title: 数据看板-流程统计入参
  6. * @Author dzx
  7. * @Date: 2024年8月2日
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class StatisticsDto {
  12. @ApiModelProperty("用户id")
  13. private Long userId;
  14. }