| 12345678910111213141516171819202122232425262728293031323334353637 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * TacInspYearParam
- *
- * @author lune
- * @date 2019-9-6
- */
- public class TacInspYearParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("*年度")
- private Long year;
- public TacInspYearParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- }
|