package com.matrix.system.shopXcx.mqTask.DTO;
|
|
import java.util.List;
|
|
public class UserProjInfo {
|
|
String type;
|
|
String name;
|
|
Long id;
|
|
/**
|
* 余次
|
*/
|
String surplusCount;
|
|
|
List<UserProjInfo> childPro;
|
|
|
public String getType() {
|
return type;
|
}
|
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
|
public String getName() {
|
return name;
|
}
|
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
|
public Long getId() {
|
return id;
|
}
|
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
|
public String getSurplusCount() {
|
return surplusCount;
|
}
|
|
|
public void setSurplusCount(String surplusCount) {
|
this.surplusCount = surplusCount;
|
}
|
|
|
public List<UserProjInfo> getChildPro() {
|
return childPro;
|
}
|
|
|
public void setChildPro(List<UserProjInfo> childPro) {
|
this.childPro = childPro;
|
}
|
|
|
|
|
|
|
|
}
|