package org.jeecg.modules.dry.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
@Data
|
@XmlRootElement(name = "BaseParam")
|
@XmlAccessorType(XmlAccessType.FIELD)
|
public class BaseParam {
|
/**索引*/
|
@XmlElement(name = "index")
|
@ApiModelProperty(value = "索引")
|
private String index;
|
/**编码*/
|
@XmlElement(name = "code")
|
@ApiModelProperty(value = "编码")
|
private String code;
|
/**名称*/
|
@XmlElement(name = "name")
|
@ApiModelProperty(value = "名称")
|
private String name;
|
/**类型*/
|
@XmlElement(name = "typ")
|
@ApiModelProperty(value = "类型")
|
private String typ;
|
/**ab*/
|
@XmlElement(name = "ab")
|
@ApiModelProperty(value = "ab")
|
private String ab;
|
}
|