package com.lf.server.entity.ctrl;
|
|
import io.swagger.models.auth.In;
|
|
import java.util.List;
|
|
/**
|
* 发布实体类
|
* @author WWW
|
*/
|
public class PubEntity {
|
public PubEntity() {
|
}
|
|
private String type;
|
|
private String token;
|
|
private String name;
|
|
private Integer userId;
|
|
private Integer min;
|
|
private Integer max;
|
|
private Integer noData;
|
|
private String dircode;
|
|
private String depcode;
|
|
private List<String> ids;
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getMin() {
|
return min;
|
}
|
|
public void setMin(Integer min) {
|
this.min = min;
|
}
|
|
public Integer getMax() {
|
return max;
|
}
|
|
public void setMax(Integer max) {
|
this.max = max;
|
}
|
|
public Integer getNoData() {
|
return noData;
|
}
|
|
public void setNoData(Integer noData) {
|
this.noData = noData;
|
}
|
|
public String getDircode() {
|
return dircode;
|
}
|
|
public void setDircode(String dircode) {
|
this.dircode = dircode;
|
}
|
|
public String getDepcode() {
|
return depcode;
|
}
|
|
public void setDepcode(String depcode) {
|
this.depcode = depcode;
|
}
|
|
public List<String> getIds() {
|
return ids;
|
}
|
|
public void setIds(List<String> ids) {
|
this.ids = ids;
|
}
|
}
|