elkers
2025-04-09 806cbe242deee0ddbcdc9dc898150c3af836cc0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.nanjing.water.entity.search;
 
import com.nanjing.water.entity.dto.SearchBasicDTO;
import lombok.Data;
 
/**
 * 管理员帐号
 * @author lin.liu
 */
@Data
public class SearchAdminUser extends SearchBasicDTO {
    @Override
    public String toString() {
        return "SearchAdminUser{" + "'" +
                "keywords='" + getKeywords() +
                ", listId =" + getListId() +
                ", status =" + getStatus() +
                ", listStatus =" + getListStatus() +
                ", createTimeRange='" + getCreateTimeRange() + "'" +
                ", createTimeStart =" + getCreateTimeEnd() +
                ", createTimeEnd =" + getCreateTimeEnd() +
                ", lastId =" + getListId() +
                ", orderBy='" + getOrderBy() + "'" +
                '}';
    }
}