...
|
...
|
@@ -367,12 +367,6 @@ func (c *SummaryEvaluationController) ExportAllEvaluationSuper() { |
|
|
func (c *SummaryEvaluationController) ListExecutorEvaluationSelf() {
|
|
|
srv := service.NewSummaryEvaluationService()
|
|
|
param := &command.QueryExecutorEvaluationList{}
|
|
|
err := c.BindJSON(param)
|
|
|
if err != nil {
|
|
|
e := application.ThrowError(application.ARG_ERROR, "json 解析错误"+err.Error())
|
|
|
c.Response(nil, e)
|
|
|
return
|
|
|
}
|
|
|
userReq := middlewares.GetUser(c.Ctx)
|
|
|
param.CompanyId = int(userReq.CompanyId)
|
|
|
param.ExecutorId = int(userReq.UserId)
|
...
|
...
|
|