| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.util.List;
- public class PlanAllGroupDto {
- @ApiModelProperty("督查类别")
- private String nm;
- @ApiModelProperty("类别type")
- private String pType;
- @ApiModelProperty("计划检查项目数量")
- private Long quantity;
- @ApiModelProperty("组ID")
- private String id;
- @ApiModelProperty("对象list")
- private List<PersAllObjDto> objectList;
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public Long getQuantity() {
- return quantity;
- }
- public void setQuantity(Long quantity) {
- this.quantity = quantity;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public List<PersAllObjDto> getObjectList() {
- return objectList;
- }
- public void setObjectList(List<PersAllObjDto> objectList) {
- this.objectList = objectList;
- }
- public String getpType() {
- return pType;
- }
- public void setpType(String pType) {
- this.pType = pType;
- }
- }
|