1234567891011121314151617181920 |
- package com.rongwei.bsentity.dto;
- import com.rongwei.rwcommon.vo.ColumnQueryType;
- import lombok.*;
- import java.util.List;
- @Setter
- @Getter
- @NoArgsConstructor
- @AllArgsConstructor
- @Builder
- public class CommonGetParam {
- /**
- * 字段查询类型列表
- */
- private List<ColumnQueryType> columnQueryTypes;
- }
|