package cn.lihu.jh.module.system.controller.admin.tenant.vo.tenant; 
 | 
  
 | 
import cn.lihu.jh.framework.common.pojo.PageParam; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import lombok.Data; 
 | 
import lombok.EqualsAndHashCode; 
 | 
import lombok.ToString; 
 | 
import org.springframework.format.annotation.DateTimeFormat; 
 | 
  
 | 
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) 
 | 
@ToString(callSuper = true) 
 | 
public class TenantPageReqVO extends PageParam { 
 | 
  
 | 
    @Schema(description = "租户名", example = "芋道") 
 | 
    private String name; 
 | 
  
 | 
    @Schema(description = "联系人", example = "芋艿") 
 | 
    private String contactName; 
 | 
  
 | 
    @Schema(description = "联系手机", example = "15601691300") 
 | 
    private String contactMobile; 
 | 
  
 | 
    @Schema(description = "租户状态(0正常 1停用)", example = "1") 
 | 
    private Integer status; 
 | 
  
 | 
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) 
 | 
    @Schema(description = "创建时间") 
 | 
    private LocalDateTime[] createTime; 
 | 
  
 | 
} 
 |