作者 tangxvhui

去除字段

@@ -1588,11 +1588,11 @@ func (srv *SummaryEvaluationService) editEvaluationValue( @@ -1588,11 +1588,11 @@ func (srv *SummaryEvaluationService) editEvaluationValue(
1588 for _, v := range evaluationItems { 1588 for _, v := range evaluationItems {
1589 newValue := &domain.SummaryEvaluationValue{} 1589 newValue := &domain.SummaryEvaluationValue{}
1590 newValue.SetBlankValue(evaluationData, v) 1590 newValue.SetBlankValue(evaluationData, v)
1591 - if isTemporary {  
1592 - newValue.IsTemporary = 1  
1593 - } else {  
1594 - newValue.IsTemporary = 0  
1595 - } 1591 + // if isTemporary {
  1592 + // newValue.IsTemporary = 1
  1593 + // } else {
  1594 + // newValue.IsTemporary = 0
  1595 + // }
1596 evaluationValueMap[v.Id] = newValue 1596 evaluationValueMap[v.Id] = newValue
1597 evaluationItemMap[v.Id] = v 1597 evaluationItemMap[v.Id] = v
1598 //重置计数 1598 //重置计数
@@ -21,7 +21,7 @@ type SummaryEvaluationValue struct { @@ -21,7 +21,7 @@ type SummaryEvaluationValue struct {
21 Rating RatingLevel `json:"rating"` //评级时的填写值 21 Rating RatingLevel `json:"rating"` //评级时的填写值
22 CreatedAt time.Time `json:"createdAt"` //数据创建时间 22 CreatedAt time.Time `json:"createdAt"` //数据创建时间
23 UpdatedAt time.Time `json:"updatedAt"` //数据更新时间 23 UpdatedAt time.Time `json:"updatedAt"` //数据更新时间
24 - IsTemporary int `json:"IsTemporary"` // 0-正式数据 1-临时提交的数据 24 + // IsTemporary int `json:"IsTemporary"` // 0-正式数据 1-临时提交的数据
25 } 25 }
26 26
27 type SummaryEvaluationValueRepository interface { 27 type SummaryEvaluationValueRepository interface {
@@ -20,5 +20,5 @@ type SummaryEvaluationValue struct { @@ -20,5 +20,5 @@ type SummaryEvaluationValue struct {
20 Remark string //填写的内容反馈 20 Remark string //填写的内容反馈
21 CreatedAt time.Time //数据创建时间 21 CreatedAt time.Time //数据创建时间
22 UpdatedAt time.Time //数据更新时间 22 UpdatedAt time.Time //数据更新时间
23 - IsTemporary int `pg:",use_zero"` // 0-正式数据 1-临时提交的数据 23 + // IsTemporary int `pg:",use_zero"` // 0-正式数据 1-临时提交的数据
24 } 24 }
@@ -34,7 +34,7 @@ func (repo *SummaryEvaluationValueRepository) TransformToDomain(d *models.Summar @@ -34,7 +34,7 @@ func (repo *SummaryEvaluationValueRepository) TransformToDomain(d *models.Summar
34 Rating: d.Rating, 34 Rating: d.Rating,
35 CreatedAt: d.CreatedAt, 35 CreatedAt: d.CreatedAt,
36 UpdatedAt: d.UpdatedAt, 36 UpdatedAt: d.UpdatedAt,
37 - IsTemporary: d.IsTemporary, 37 + // IsTemporary: d.IsTemporary,
38 } 38 }
39 } 39 }
40 40
@@ -51,7 +51,7 @@ func (repo *SummaryEvaluationValueRepository) Save(param *domain.SummaryEvaluati @@ -51,7 +51,7 @@ func (repo *SummaryEvaluationValueRepository) Save(param *domain.SummaryEvaluati
51 Remark: param.Remark, 51 Remark: param.Remark,
52 CreatedAt: param.CreatedAt, 52 CreatedAt: param.CreatedAt,
53 UpdatedAt: param.UpdatedAt, 53 UpdatedAt: param.UpdatedAt,
54 - IsTemporary: param.IsTemporary, 54 + // IsTemporary: param.IsTemporary,
55 } 55 }
56 db := repo.transactionContext.PgTx 56 db := repo.transactionContext.PgTx
57 if m.Id == 0 { 57 if m.Id == 0 {