@@ -2,9 +2,7 @@ package cn.com.taiji.core.entity.managew; | |||
import java.time.LocalDate; | |||
import javax.persistence.Column; | |||
import javax.persistence.Entity; | |||
import javax.persistence.Table; | |||
import javax.persistence.*; | |||
import cn.com.taiji.common.entity.StringUUIDEntity; | |||
import cn.com.taiji.core.entity.dict.EnableStatus; | |||
@@ -68,6 +66,7 @@ public class KnowledgeAfterSaleAudit extends StringUUIDEntity{ | |||
/** 状态 */ | |||
@Column(name ="STATUS") | |||
@Enumerated(EnumType.STRING) | |||
private EnableStatus status; | |||
/** 不适用原因 */ |
@@ -2,9 +2,7 @@ package cn.com.taiji.core.entity.managew; | |||
import java.time.LocalDate; | |||
import javax.persistence.Column; | |||
import javax.persistence.Entity; | |||
import javax.persistence.Table; | |||
import javax.persistence.*; | |||
import cn.com.taiji.common.entity.StringUUIDEntity; | |||
import cn.com.taiji.core.entity.dict.EnableStatus; | |||
@@ -77,6 +75,7 @@ public class KnowledgeBusinessInfo extends StringUUIDEntity{ | |||
/** 状态 */ | |||
@Column(name ="STATUS") | |||
@Enumerated(EnumType.STRING) | |||
private EnableStatus status; | |||
/** 不适用原因 */ |
@@ -2,9 +2,7 @@ package cn.com.taiji.core.entity.managew; | |||
import java.time.LocalDate; | |||
import javax.persistence.Column; | |||
import javax.persistence.Entity; | |||
import javax.persistence.Table; | |||
import javax.persistence.*; | |||
import cn.com.taiji.common.entity.StringUUIDEntity; | |||
import cn.com.taiji.core.entity.dict.KnowlegdeType; | |||
@@ -44,6 +42,7 @@ public class KnowledgeFileInfo extends StringUUIDEntity { | |||
/** 知识库表类型;0 - 工单处理 , 1 - 业务办理资料, 2 - 售后订单审核 */ | |||
@Column(name = "KNOWLEDGE_TYPE") | |||
@Enumerated(EnumType.STRING) | |||
private KnowlegdeType knowledgeType; | |||
} |
@@ -2,9 +2,7 @@ package cn.com.taiji.core.entity.managew; | |||
import java.time.LocalDate; | |||
import javax.persistence.Column; | |||
import javax.persistence.Entity; | |||
import javax.persistence.Table; | |||
import javax.persistence.*; | |||
import cn.com.taiji.common.entity.StringUUIDEntity; | |||
import cn.com.taiji.core.entity.dict.EnableStatus; | |||
@@ -112,6 +110,7 @@ public class KnowledgeWorkOrderProcess extends StringUUIDEntity{ | |||
/** 状态 */ | |||
@Column(name ="STATUS") | |||
@Enumerated(EnumType.STRING) | |||
private EnableStatus status; | |||
/** 不适用原因 */ |