|
|
@ -28,6 +28,7 @@ import com.kms.common.utils.BaseEntityUtils; |
|
|
|
|
|
|
|
|
|
|
|
import com.kms.common.utils.UserUtils; |
|
|
|
import com.kms.system.service.SysUserService; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -67,6 +68,9 @@ public class BsSgcJsjdBuiProgressInfoController extends BaseController |
|
|
|
@Autowired |
|
|
|
private BsSgcJsjdBuiProgressPlanService bsSgcJsjdBuiProgressPlanService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
SysUserService userService; |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询进度填报详情列表 |
|
|
|
*/ |
|
|
@ -97,7 +101,10 @@ public class BsSgcJsjdBuiProgressInfoController extends BaseController |
|
|
|
@GetMapping(value = "/{id}") |
|
|
|
public AjaxResult getInfo(@PathVariable("id") String id) |
|
|
|
{ |
|
|
|
return AjaxResult.success(bsSgcJsjdBuiProgressInfoService.getById(id)); |
|
|
|
BsSgcJsjdBuiProgressInfo byId = bsSgcJsjdBuiProgressInfoService.getById(id); |
|
|
|
SysUser user = userService.getById(byId.getCreateUid()); |
|
|
|
byId.setNickName(user.getNickName()); |
|
|
|
return AjaxResult.success(byId); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|