| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package cn.com.goldenwater.dcproj.param;
- public class ObjInspPblmsParams {
- /**
- * 附件一,附件二
- */
- private String attach;
- /**
- * 类型 1 小水库 2 农村饮用水 3 水毁 4 172 重点工程
- */
- private String type;
- /**
- * 父id
- */
- private String pguid;
- /**
- * 表示节点层级
- */
- private String sort1;
- /**
- * 序号
- */
- private String sn;
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- public String getAttach() {
- return attach;
- }
- public void setAttach(String attach) {
- this.attach = attach;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getPguid() {
- return pguid;
- }
- public void setPguid(String pguid) {
- this.pguid = pguid;
- }
- public String getSort1() {
- return sort1;
- }
- public void setSort1(String sort1) {
- this.sort1 = sort1;
- }
- }
|