|
|
|
@ -48,6 +48,18 @@ public class ResUpdateRequest extends BaseUpdateRequest {
|
|
|
|
|
@Length(min = 0, max = 255, message = "[resValue]资源内容长度不合法(0-255)")
|
|
|
|
|
private String resValue;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上级代码
|
|
|
|
|
*/
|
|
|
|
|
@Length(min = 0, max = 50, message = "[supCode]上级代码长度不合法(0-50)")
|
|
|
|
|
private String supCode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上级名称
|
|
|
|
|
*/
|
|
|
|
|
@Length(min = 0, max = 50, message = "[supName]上级名称长度不合法(0-50)")
|
|
|
|
|
private String supName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否有效
|
|
|
|
|
*/
|
|
|
|
@ -94,6 +106,22 @@ public class ResUpdateRequest extends BaseUpdateRequest {
|
|
|
|
|
this.resValue = resValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSupCode() {
|
|
|
|
|
return this.supCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSupCode(String supCode) {
|
|
|
|
|
this.supCode = supCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSupName() {
|
|
|
|
|
return this.supName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSupName(String supName) {
|
|
|
|
|
this.supName = supName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean getValid() {
|
|
|
|
|
return this.valid;
|
|
|
|
|
}
|
|
|
|
|