| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspAll;
- import io.swagger.annotations.ApiModelProperty;
- public class ObjGroup extends BisInspAll {
- @ApiModelProperty("督查类型")
- private String ptype;
- @ApiModelProperty("督查类型名称")
- private String name;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- }
|