| | |
| | | package com.ruoyi.system.query; |
| | | |
| | | import com.ruoyi.common.core.domain.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "账单查询对象query") |
| | | public class TBillQuery extends BasePage { |
| | | /** |
| | | * 缴费状态 1=未缴费 2=待确认 3=已缴费 4=已逾期 |
| | | */ |
| | | private Integer payFeesStatus; |
| | | |
| | | @ApiModelProperty(value = "缴费状态 1=未缴费 2=待确认 3=已缴费 4=已逾期 5=已失效") |
| | | private String payFeesStatus; |
| | | private String phone; |
| | | |
| | | private String residentName; |
| | | |
| | | private String contractNumber; |
| | | |
| | | |
| | | |
| | | } |