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 = "TypeParam")
|
@XmlAccessorType(XmlAccessType.FIELD)
|
public class TypeParam {
|
|
/**药材分类*/
|
@XmlElement(name = "mtype")
|
@ApiModelProperty(value = "药材分类")
|
private Integer mtype;
|
}
|