|
@@ -93,8 +93,9 @@ public class ProjectAppController {
|
|
|
* @date 2020/1/11 4:21 下午
|
|
|
*/
|
|
|
@PostMapping("lift/add")
|
|
|
+ @Validation(fields = {"mtCompanyId"})
|
|
|
public RestResponse add(@Val @RequestBody LiftExtensionRequest request) {
|
|
|
- Validator.valid(request.getLift(), "mtCompanyId", "registrationCode");
|
|
|
+ Validator.valid(request.getLift(), "registrationCode");
|
|
|
return projectAppService.add(request);
|
|
|
}
|
|
|
|