干燥机配套车间生产管理系统/云平台服务端
baoshiwei
2024-12-11 7c585586e9bea943161676bd9d127e81123891c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
}