| 1234567891011121314151617181920212223242526272829303132 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspRssfdrRgstr;
- import lombok.Data;
- /**
- * @author: LinQiLong
- * @create: 2021/11/5 18:38
- */
- @Data
- public class BisInspRssfdrRgstrDto extends BisInspRssfdrRgstr {
- /**
- * 基础表id
- */
- private String code;
- // 基础表id
- private String baseId;
- //组id
- private String nodeId;
- // 对象名称
- private String nm;
- // ptype
- private String pType;
- // 对象ut_Type
- private String type;
- private String groupName;
- private String adFullName;
- private String city;
- private String country;
- }
|