package org.springblade.code.vo.universalInter.apply;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
import com.thoughtworks.xstream.annotations.XStreamImplicit;
|
|
import java.util.List;
|
|
/**
|
* 分类数据信息
|
*/
|
@XStreamAlias("object")
|
public class ApplyDataVO {
|
/***
|
* 输入主键
|
*/
|
@XStreamAsAttribute
|
private String id;
|
/**
|
* 编码
|
*/
|
@XStreamAsAttribute
|
private String code;
|
/**
|
* 状态
|
*/
|
@XStreamAsAttribute
|
private String status;
|
/**
|
* 数据操作类型
|
*/
|
@XStreamAsAttribute
|
private String operate;
|
/***
|
* 创建者
|
*/
|
@XStreamAsAttribute
|
private String creator;
|
|
/**
|
* 更改者
|
*/
|
@XStreamAsAttribute
|
private String editor;
|
/***
|
* 数据属性对象
|
*/
|
@XStreamImplicit
|
private List<ProppertyVO> prop;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getOperate() {
|
return operate;
|
}
|
|
public void setOperate(String operate) {
|
this.operate = operate;
|
}
|
|
public List<ProppertyVO> getProp() {
|
return prop;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public String getEditor() {
|
return editor;
|
}
|
|
public void setEditor(String editor) {
|
this.editor = editor;
|
}
|
|
public void setProp(List<ProppertyVO> prop) {
|
this.prop = prop;
|
}
|
|
@Override
|
public String toString() {
|
return "ApplyDataVO{" +
|
"id='" + id + '\'' +
|
", code='" + code + '\'' +
|
", status='" + status + '\'' +
|
", operate='" + operate + '\'' +
|
", creator='" + creator + '\'' +
|
", editor='" + editor + '\'' +
|
", prop=" + prop +
|
'}';
|
}
|
}
|