|
@@ -331,6 +331,7 @@ public class RecruitApiController {
|
|
|
@RequestParam(value="salaryForm",defaultValue="") String salaryForm,
|
|
@RequestParam(value="salaryForm",defaultValue="") String salaryForm,
|
|
|
@RequestParam(value="isOnline",defaultValue="true") Boolean isOnline,
|
|
@RequestParam(value="isOnline",defaultValue="true") Boolean isOnline,
|
|
|
@RequestParam(value="ageRequirement",defaultValue="") String ageRequirement,
|
|
@RequestParam(value="ageRequirement",defaultValue="") String ageRequirement,
|
|
|
|
|
+ @RequestParam(value="images",defaultValue="") String images,
|
|
|
@RequestAttribute String subject){
|
|
@RequestAttribute String subject){
|
|
|
|
|
|
|
|
MessageResult<Map> msgResult = new MessageResult<>();
|
|
MessageResult<Map> msgResult = new MessageResult<>();
|
|
@@ -364,6 +365,7 @@ public class RecruitApiController {
|
|
|
recruitInformationInfo.setAddress(address);
|
|
recruitInformationInfo.setAddress(address);
|
|
|
recruitInformationInfo.setSalaryForm(salaryForm);
|
|
recruitInformationInfo.setSalaryForm(salaryForm);
|
|
|
recruitInformationInfo.setIsOnline(isOnline);
|
|
recruitInformationInfo.setIsOnline(isOnline);
|
|
|
|
|
+ recruitInformationInfo.setImages(images);
|
|
|
recruitInformationInfo.setAgeRequirement(ageRequirement);
|
|
recruitInformationInfo.setAgeRequirement(ageRequirement);
|
|
|
|
|
|
|
|
recruitInformationInfoService.update(recruitInformationInfo);
|
|
recruitInformationInfoService.update(recruitInformationInfo);
|
|
@@ -390,6 +392,7 @@ public class RecruitApiController {
|
|
|
recruitInformationInfo.setSalaryForm(salaryForm);
|
|
recruitInformationInfo.setSalaryForm(salaryForm);
|
|
|
recruitInformationInfo.setIsOnline(isOnline);
|
|
recruitInformationInfo.setIsOnline(isOnline);
|
|
|
recruitInformationInfo.setAgeRequirement(ageRequirement);
|
|
recruitInformationInfo.setAgeRequirement(ageRequirement);
|
|
|
|
|
+ recruitInformationInfo.setImages(images);
|
|
|
recruitInformationInfo.setIsTopping(false);
|
|
recruitInformationInfo.setIsTopping(false);
|
|
|
|
|
|
|
|
recruitInformationInfoService.insert(recruitInformationInfo);
|
|
recruitInformationInfoService.insert(recruitInformationInfo);
|