| 1234567891011121314151617181920212223242526272829303132333435 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by jinshui on 2019/12/2.
- */
- public class TacIndexParam extends PageParam implements Serializable {
- @ApiModelProperty("所选年度")
- private Long year;
- @ApiModelProperty("当前用户id")
- private String persId;
- public TacIndexParam(){}
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- }
|