1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.yeshi.makemoney.app.service.query.goldcorn;
|
| public class GoldCornSettleRecordQuery {
| //搜索关键词
| private String day;
|
|
| public String getDay() {
| return day;
| }
|
| public void setDay(String day) {
| this.day = day;
| }
| }
|
|