fix
Helius
2021-07-14 a8560eb20f89c32e9c2cdb3e137ece2fa3c10ec4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xzx.gc.model.query;
 
 
import com.xzx.gc.annotation.Query;
import com.xzx.gc.model.PageParam;
import lombok.Data;
 
@Data
public class SettingMoneyQuery extends PageParam {
 
    // 开始时间
    @Query(name = "开始时间", display = true,fuzzy=true)
    String StartTime;
    // 结束时间
    @Query(name = "结束时间", display = true,fuzzy=true)
    String endTime;
    // 时间间隔
    @Query(name = "间隔时间", display = true,fuzzy=true)
    String timeInterval;
    // 代丢价格
    @Query(name = "代丢价格", display = true,fuzzy=true)
    String agentPrice;
 
}