| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * TacInspBatchParam
- *
- * @author lune
- * @date 2019-9-6
- */
- public class TacInspBatchParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("*批次")
- private Long batch;
- @ApiModelProperty("*排序顺序")
- private Double sn;
- @ApiModelProperty("年度")
- private Long year;
- public TacInspBatchParam() {
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public Long getBatch() {
- return batch;
- }
- public void setBatch(Long batch) {
- this.batch = batch;
- }
- public Double getSn() {
- return sn;
- }
- public void setSn(Double sn) {
- this.sn = sn;
- }
- }
|