diff --git a/src/main/java/com/lz/modules/sys/entity/app/ResultDetail.java b/src/main/java/com/lz/modules/sys/entity/app/ResultDetail.java
index 3b477599..38a4bcaf 100644
--- a/src/main/java/com/lz/modules/sys/entity/app/ResultDetail.java
+++ b/src/main/java/com/lz/modules/sys/entity/app/ResultDetail.java
@@ -36,7 +36,7 @@ public class ResultDetail implements java.io.Serializable {
private Long backId;
//是否为备份,0非备份,1备份值
@ApiModelProperty(value = "是否为备份,0非备份,1备份值", name = "isBack")
- private Integer isBack;
+ private Integer isEdit;
//1,业绩,2文化价值观
@ApiModelProperty(value = "1,业绩,2文化价值观", name = "type")
private Integer type;
@@ -159,14 +159,14 @@ public class ResultDetail implements java.io.Serializable {
* @return
*/
public Integer getIsBack() {
- return isBack;
+ return isEdit;
}
/**
* 是否为备份,0非备份,1备份值
* @param isBack
*/
public void setIsBack(Integer isBack) {
- this.isBack = isBack;
+ this.isEdit = isBack;
}
/**
@@ -387,7 +387,7 @@ public class ResultDetail implements java.io.Serializable {
",gmtCreate=" + gmtCreate +
",gmtModified=" + gmtModified +
",backId=" + backId +
- ",isBack=" + isBack +
+ ",isBack=" + isEdit +
",type=" + type +
",target=" + target +
",keyResult=" + keyResult +
diff --git a/src/main/resources/mapper/app/ResultDetailMapper.xml b/src/main/resources/mapper/app/ResultDetailMapper.xml
index d5ac1dc0..fa8bf059 100644
--- a/src/main/resources/mapper/app/ResultDetailMapper.xml
+++ b/src/main/resources/mapper/app/ResultDetailMapper.xml
@@ -9,7 +9,7 @@
-
+
@@ -29,7 +29,7 @@
- id AS id, is_delete AS isDelete, gmt_create AS gmtCreate, gmt_modified AS gmtModified, back_id AS backId, is_back AS isBack, type AS type, target AS target, key_result AS keyResult, key_result_3_5 AS keyResult35, key_result_3_7 AS keyResult37, check_weight AS checkWeight, check_result AS checkResult, super_score AS superScore, acquire_score AS acquireScore, score_comment AS scoreComment, record_id AS recordId, staff_id AS staffId, priority AS priority, model_id AS modelId
+ id AS id, is_delete AS isDelete, gmt_create AS gmtCreate, gmt_modified AS gmtModified, back_id AS backId, is_edit AS isEdit, type AS type, target AS target, key_result AS keyResult, key_result_3_5 AS keyResult35, key_result_3_7 AS keyResult37, check_weight AS checkWeight, check_result AS checkResult, super_score AS superScore, acquire_score AS acquireScore, score_comment AS scoreComment, record_id AS recordId, staff_id AS staffId, priority AS priority, model_id AS modelId
@@ -43,7 +43,7 @@
insert into lz_result_detail(
back_id,
- is_back,
+ is_edit,
type,
target,
key_result,
@@ -63,7 +63,7 @@
gmt_modified
)values(
#{ backId},
- #{ isBack},
+ #{ isEdit},
#{ type},
#{ target},
#{ keyResult},
@@ -92,7 +92,7 @@
is_delete = #{isDelete},
gmt_create = #{gmtCreate},
back_id = #{backId},
- is_back = #{isBack},
+ is_edit = #{isEdit},
type = #{type},
target = #{target},
key_result = #{keyResult},
@@ -120,7 +120,7 @@
is_delete = #{isDelete},
gmt_create = #{gmtCreate},
back_id = #{backId},
- is_back = #{isBack},
+ is_edit = #{isEdit},
type = #{type},
target = #{target},
key_result = #{keyResult},
@@ -147,7 +147,7 @@
@@ -204,11 +204,11 @@