xiejun
2024-11-10 012235d05d8dc7c2decdc7229d93033b0399ecbb
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/webserviceModel/apply/ProppertyVO.java
@@ -0,0 +1,56 @@
package com.vci.ubcs.code.vo.webserviceModel.apply;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
@XStreamAlias("prop")
public class ProppertyVO {
    /**
     * 属性字段
     */
    @XStreamAsAttribute
    private  String key;
    /**
     * 属性显示名称
     */
    @XStreamAsAttribute
    private String text;
    /**
     * 属性值
     */
    @XStreamAsAttribute
    private  String value;
    public String getKey() {
        return key;
    }
    public void setKey(String key) {
        this.key = key;
    }
    public String getText() {
        return text;
    }
    public void setText(String text) {
        this.text = text;
    }
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }
    @Override
    public String toString() {
        return "ProppertyVO{" +
                "key='" + key + '\'' +
                ", text='" + text + '\'' +
                ", value='" + value + '\'' +
                '}';
    }
}