src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Itemevaluation.kt
@@ -4,60 +4,74 @@
import javax.persistence.Column
import javax.persistence.Id
import javax.persistence.Table
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@Table(name = "ea_t_itemevaluation")
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "Itemevaluation")
open class Itemevaluation {
    @Id
    @Column(name = "IE_GUID")
    @ApiModelProperty(value = "主键16位guid")
    var ieguid: String? = null
    @Column(name = "I_GUID")
    @ApiModelProperty(value = "巡查记录id")
    var iguid: String? = null
    @Column(name = "ST_GUID")
    @ApiModelProperty(value = "监管子任务id")
    var stguid: String? = null
    @Column(name = "S_GUID")
    @ApiModelProperty(value = "场景guid")
    var sguid: String? = null
    @Column(name = "IE_SenseName")
    @ApiModelProperty(value = "场景名称")
    var sensename: String? = null
    /**
     * 引用自考核规范表
     */
    @Column(name = "ER_GUID")
    @ApiModelProperty(value = "引用自考核规范表")
    var erguid: String? = null
    /**
     * 引用自考核规范表
     */
    @Column(name = "IE_RuleName")
    @ApiModelProperty(value = "引用自考核规范表")
    var rulename: String? = null
    /**
     * 1规范性  2评分
     */
    @Column(name = "IE_RuleType")
    @ApiModelProperty(value = "1规范性  2评分")
    var ruletype: Int? = null
    /**
     * 1规范考核项 4 最小评分项
     */
    @Column(name = "IE_ERType")
    @ApiModelProperty(value = "1规范考核项 4 最小评分项")
    var ertype: Int? = null
    /**
     * 引用自考核规范项子表
     */
    @Column(name = "ESR_GUID")
    @ApiModelProperty(value = "引用自考核规范项子表")
    var esrguid: String? = null
    /**
     * 引用自考核规范项子表
     */
    @Column(name = "IE_Name")
    @ApiModelProperty(value = "引用自考核规范项子表")
    var name: String? = null
    /**
@@ -66,6 +80,7 @@
     * 不为空
     */
    @Column(name = "IE_Value")
    @ApiModelProperty(value = "规范评估则为:√ × — 评分则为:数值 不为空")
    var value: String? = null
    /**
@@ -74,6 +89,7 @@
     * 不为空
     */
    @Column(name = "IE_ResultAfter")
    @ApiModelProperty(value = "规范评估则为:√ × — 评分则为:数值 不为空")
    var resultafter: String? = null
    /**
@@ -82,17 +98,22 @@
     * 不为空
     */
    @Column(name = "IE_RecheckValue")
    @ApiModelProperty(value = "规范评估则为:√ × — 评分则为:数值 不为空")
    var vecheckvalue: String? = null
    @Column(name = "IE_Extension1")
    @ApiModelProperty(value = "扩展字段一")
    var extension1: String? = null
    @Column(name = "IE_Extension2")
    @ApiModelProperty(value = "扩展字段二")
    var extension2: String? = null
    @Column(name = "IE_Extension3")
    @ApiModelProperty(value = "扩展字段三")
    var extension3: String? = null
    @Column(name = "IE_Remark")
    @ApiModelProperty(value = "备注")
    var remark: String? = null
}