|
|
|
@ -58,6 +58,9 @@ public class CustomServiceImpl extends ServiceImpl<CustomMapper, Custom> impleme
|
|
|
|
|
@Autowired
|
|
|
|
|
PcUserServiceImpl pcUserService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
MiniUserServiceImpl miniUserService;
|
|
|
|
|
|
|
|
|
|
public void customRegister(Custom custom,List<CustomSupport> customSupports){
|
|
|
|
|
String id = Uuid8Utils.generateShortUUID();
|
|
|
|
|
custom.setId(id);
|
|
|
|
@ -228,6 +231,8 @@ public class CustomServiceImpl extends ServiceImpl<CustomMapper, Custom> impleme
|
|
|
|
|
custom.setServiceBeginDate(new Date(serviceBeginDate));
|
|
|
|
|
custom.setServiceEndDate(new Date(serviceEndDate));
|
|
|
|
|
customMapper.updateById(custom);
|
|
|
|
|
|
|
|
|
|
miniUserService.certified(custom.getMiniUserId());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public JSONObject enableCustomDetail(String customId){
|
|
|
|
|