Commit b6f3aef2 authored by 吴俊凯's avatar 吴俊凯

预案详情实体类修改

parent 75e23f33
...@@ -6,12 +6,11 @@ import javax.persistence.Column; ...@@ -6,12 +6,11 @@ import javax.persistence.Column;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.NamedQuery; import javax.persistence.NamedQuery;
import javax.persistence.Table; import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* c_plan_detail * c_plan_detail
* @author * @author
*/ */
@Data @Data
@Entity @Entity
...@@ -31,14 +30,15 @@ public class PlanDetail extends BasicEntity { ...@@ -31,14 +30,15 @@ public class PlanDetail extends BasicEntity {
private String code; private String code;
/** /**
* 预案类型 * 预案分类id
*/ */
private Integer type; @Column(name="classify_id")
private Long classifyId;
/** /**
* 适用范围 * 适用范围
*/ */
private Integer range; private String range;
/** /**
* 编写部门 * 编写部门
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment