| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.template.model.request;
- import com.template.model.vo.gauageOutfitVo;
- import lombok.Data;
- import javax.validation.constraints.NotBlank;
- import javax.validation.constraints.NotEmpty;
- import javax.validation.constraints.NotNull;
- import java.util.List;
- /**
- * <p>
- *
- * </p>
- *
- * @author ceshi
- * @since 2023-12-04
- */
- @Data
- public class smartUserExportRequest {
- /**
- * 部门ID
- */
- private Integer departmentId;
- /**
- * 名称
- */
- private String name;
- /**
- * 表头集合
- */
- private List<gauageOutfitVo> gauageOutfitVos;
- }
|