| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspDstfldqh;
- /**
- * @author lhc
- * @date 2021/6/10 20:19
- */
- public class BisInspDstfldqhDto extends BisInspDstfldqh {
- public BisInspDstfldqhDto() {
- }
- /**
- * 基础表id
- */
- private String code;
- // 基础表id
- private String baseId;
- //组id
- private String nodeId;
- // ptype
- private String pType;
- // 对象ut_Type
- private String type;
- private String groupName;
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getBaseId() {
- return baseId;
- }
- public void setBaseId(String baseId) {
- this.baseId = baseId;
- }
- public String getNodeId() {
- return nodeId;
- }
- public void setNodeId(String nodeId) {
- this.nodeId = nodeId;
- }
- public String getpType() {
- return pType;
- }
- public void setpType(String pType) {
- this.pType = pType;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|