smartUserExportRequest.java 586 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.template.model.request;
  2. import com.template.model.vo.gauageOutfitVo;
  3. import lombok.Data;
  4. import javax.validation.constraints.NotBlank;
  5. import javax.validation.constraints.NotEmpty;
  6. import javax.validation.constraints.NotNull;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. *
  11. * </p>
  12. *
  13. * @author ceshi
  14. * @since 2023-12-04
  15. */
  16. @Data
  17. public class smartUserExportRequest {
  18. /**
  19. * 部门ID
  20. */
  21. private Integer departmentId;
  22. /**
  23. * 名称
  24. */
  25. private String name;
  26. /**
  27. * 表头集合
  28. */
  29. private List<gauageOutfitVo> gauageOutfitVos;
  30. }