| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by jinshui on 2019/9/25.
- */
- public class PersCountDto implements Serializable {
- @ApiModelProperty("组id")
- private String id;
- @ApiModelProperty("人员数量")
- private String count;
- @ApiModelProperty("类型")
- private String type;
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getCount() {
- return count;
- }
- public void setCount(String count) {
- this.count = count;
- }
- }
|