CommonGetParam.java 323 B

1234567891011121314151617181920
  1. package com.rongwei.bsentity.dto;
  2. import com.rongwei.rwcommon.vo.ColumnQueryType;
  3. import lombok.*;
  4. import java.util.List;
  5. @Setter
  6. @Getter
  7. @NoArgsConstructor
  8. @AllArgsConstructor
  9. @Builder
  10. public class CommonGetParam {
  11. /**
  12. * 字段查询类型列表
  13. */
  14. private List<ColumnQueryType> columnQueryTypes;
  15. }