src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/DomainitemVo.kt
@@ -1,26 +1,61 @@
package cn.flightfeather.supervision.lightshare.vo
import com.fasterxml.jackson.annotation.JsonInclude
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
@JsonInclude(JsonInclude.Include.NON_NULL)
public class DomainitemVo {
@ApiModel(value = "值域信息")
class DomainitemVo {
    /**
     * 值域ID
     */
    @ApiModelProperty(value = "值域ID")
    var guid: String? = null
    /**
     * 目录ID
     */
    @ApiModelProperty(value = "目录ID")
    var dcguid: String? = null
    /**
     * 目录名称
     */
    @ApiModelProperty(value = "目录名称")
    var catelogname: String? = null
    /**
     * 值
     */
    @ApiModelProperty(value = "值")
    var value: String? = null
    /**
     * 文本
     */
    @ApiModelProperty(value = "文本")
    var text: String? = null
    /**
     * 索引
     */
    @ApiModelProperty(value = "索引")
    var index: Int? = null
    /**
     * 父目录ID
     */
    @ApiModelProperty(value = "父目录ID")
    var parentguid: String? = null
    /**
     * 是否启用
     */
    @ApiModelProperty(value = "是否启用")
    var isenable: Boolean? = null
    /**
     * 编码
     */
    @ApiModelProperty(value = "编码")
    var code: String? = null
    /**
     * 备注
     */
    @ApiModelProperty(value = "备注")
    var remark: String? = null
}