...
|
...
|
@@ -346,6 +346,7 @@ func (d *StaffAssessDao) SearchUserAssessContentV2(param SearchConditin3) ([]Use |
|
|
where 1=1
|
|
|
and staff_assess.cycle_id =?
|
|
|
and staff_assess.deleted_at isnull
|
|
|
and staff_assess.types='self'
|
|
|
`
|
|
|
condition := []interface{}{param.CycleId}
|
|
|
if len(param.BeginDay) > 0 {
|
...
|
...
|
@@ -404,6 +405,7 @@ func (d *StaffAssessDao) CountUserSelfStaffAssess(param SearchConditin3) (int, e |
|
|
where 1=1
|
|
|
and staff_assess.cycle_id =?
|
|
|
and staff_assess.deleted_at isnull
|
|
|
and staff_assess.types='self'
|
|
|
`
|
|
|
condition := []interface{}{param.CycleId}
|
|
|
if len(param.BeginDay) > 0 {
|
...
|
...
|
|