12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.sysu.admin.site;
- import lombok.Data;
- import javax.persistence.Column;
- import java.util.Date;
- @Data
- public class CommonVo {
- private Long id;
- private String code;
- private Integer level;
- private Integer clazzId;
- private Integer[] clazzIds;
- private Integer periodId;
- private Integer[] periodIds;
- private Double x1;
- private Double y1;
- private Double x2;
- private Double y2;
- private String tableNames;
- private String status;
- private String city;
- private String district;
- private Integer town;
- private Date date;
- private Integer month;
- private String crop_type;
- private Integer parcel_type;
- private String[] crop_types;
- private Integer[] parcel_types;
- private Double[] point;
- public Integer page = 1;
- public Integer limit = 25;
- public Double[] sure;
- public Double[] danchan;
- /**
- * 有机质
- */
- private Double[] toc;
- /**
- * 酸碱度
- */
- private Double[] ph;
- /**
- *c -- 碳
- */
- private Double[] c;
- /**
- * _2n -- 氮
- */
- private Double[] _2n;
- /**
- *p -- 磷
- */
- private Double[] p;
- /**
- *k -- 钾
- */
- private Double[] k;
- public String statType;
- public String base64;
- }
|