src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Domainitem.kt
@@ -4,38 +4,51 @@
import javax.persistence.Column
import javax.persistence.Id
import javax.persistence.Table
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@Table(name = "sm_t_domainitem")
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "Domainitem")
public class Domainitem {
    @Id
    @Column(name = "DI_GUID")
    @ApiModelProperty(value = "域值条目guid")
    var guid: String? = null
    @Column(name = "DC_GUID")
    @ApiModelProperty(value = "域值类型guid")
    var dcguid: String? = null
    @Column(name = "DI_CatelogName")
    @ApiModelProperty(value = "域值类型名称")
    var catelogname: String? = null
    @Column(name = "DI_Value")
    @ApiModelProperty(value = "域值的值")
    var value: String? = null
    @Column(name = "DI_Text")
    @ApiModelProperty(value = "域值描述")
    var text: String? = null
    @Column(name = "DI_Index")
    @ApiModelProperty(value = "域值索引")
    var index: Int? = null
    @Column(name = "DI_ParentGUID")
    @ApiModelProperty(value = "DI_ParentGUID")
    var parentguid: String? = null
    @Column(name = "DI_IsEnable")
    @ApiModelProperty(value = "是否可用")
    var isenable: Boolean? = null
    @Column(name = "DI_Code")
    @ApiModelProperty(value = "域值代码")
    var code: String? = null
    @Column(name = "DI_Remark")
    @ApiModelProperty(value = "备注")
    var remark: String? = null
}