Helius
2021-06-25 d7064002eea6b2bc49e1a4f74f8b6b45d91f0026
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.xzx.gc.model.query;
 
 
import com.xzx.gc.annotation.Query;
import lombok.Data;
 
@Data
public class MoneyQuery extends PageParam {
 
    @Query(name = "用户名", display = true,fuzzy=true)
    String userName;
    @Query(name = "手机号码", display = true,fuzzy=true)
    String userPhone;
    String orderStatus;
 
 
 
}