package cn.lihu.jh.module.system.controller.admin.dict.vo.type; 
 | 
  
 | 
import cn.lihu.jh.framework.common.pojo.PageParam; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.Data; 
 | 
import lombok.EqualsAndHashCode; 
 | 
import org.springframework.format.annotation.DateTimeFormat; 
 | 
  
 | 
import javax.validation.constraints.Size; 
 | 
import java.time.LocalDateTime; 
 | 
  
 | 
import static cn.lihu.jh.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; 
 | 
  
 | 
@Schema(description = "管理后台 - 字典类型分页列表 Request VO") 
 | 
@Data 
 | 
@EqualsAndHashCode(callSuper = true) 
 | 
public class DictTypePageReqVO extends PageParam { 
 | 
  
 | 
    @Schema(description = "字典类型名称,模糊匹配", example = "芋道") 
 | 
    private String name; 
 | 
  
 | 
    @Schema(description = "字典类型,模糊匹配", example = "sys_common_sex") 
 | 
    @Size(max = 100, message = "字典类型类型长度不能超过100个字符") 
 | 
    private String type; 
 | 
  
 | 
    @Schema(description = "展示状态,参见 CommonStatusEnum 枚举类", example = "1") 
 | 
    private Integer status; 
 | 
  
 | 
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) 
 | 
    @Schema(description = "创建时间") 
 | 
    private LocalDateTime[] createTime; 
 | 
  
 | 
} 
 |