| | |
| | | import com.java110.core.event.cmd.Cmd; |
| | | import com.java110.core.event.cmd.CmdEvent; |
| | | import com.java110.core.factory.GenerateCodeFactory; |
| | | import com.java110.intf.community.ICommunitySpaceOpenTimeV1InnerServiceSMO; |
| | | import com.java110.intf.community.ICommunitySpaceV1InnerServiceSMO; |
| | | import com.java110.po.communitySpace.CommunitySpacePo; |
| | | import com.java110.po.communitySpaceOpenTime.CommunitySpaceOpenTimePo; |
| | | import com.java110.utils.exception.CmdException; |
| | | import com.java110.utils.util.Assert; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 类表述:保存 |
| | | * 服务编码:communitySpace.saveCommunitySpace |
| | | * 请求路劲:/app/communitySpace.SaveCommunitySpace |
| | | * add by 吴学文 at 2022-09-30 10:21:28 mail: 928255095@qq.com |
| | | * add by 吴学文 at 2022-09-30 10:29:06 mail: 928255095@qq.com |
| | | * open source address: https://gitee.com/wuxw7/MicroCommunity |
| | | * 官网:http://www.homecommunity.cn |
| | | * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下 |
| | |
| | | |
| | | @Autowired |
| | | private ICommunitySpaceV1InnerServiceSMO communitySpaceV1InnerServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private ICommunitySpaceOpenTimeV1InnerServiceSMO communitySpaceOpenTimeV1InnerServiceSMOImpl; |
| | | |
| | | @Override |
| | | public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) { |
| | |
| | | throw new CmdException("保存数据失败"); |
| | | } |
| | | |
| | | List<CommunitySpaceOpenTimePo> communitySpaceOpenTimePos = new ArrayList<>(); |
| | | CommunitySpaceOpenTimePo communitySpaceOpenTimePo = null; |
| | | for (int hours = 0; hours < 24; hours++) { |
| | | |
| | | communitySpaceOpenTimePo = new CommunitySpaceOpenTimePo(); |
| | | communitySpaceOpenTimePo.setCommunityId(reqJson.getString("communityId")); |
| | | communitySpaceOpenTimePo.setSpaceId(communitySpacePo.getSpaceId()); |
| | | communitySpaceOpenTimePo.setIsOpen("N"); |
| | | communitySpaceOpenTimePo.setTimeId(GenerateCodeFactory.getGeneratorId(CODE_PREFIX_ID)); |
| | | communitySpaceOpenTimePo.setHours(hours + ""); |
| | | communitySpaceOpenTimePos.add(communitySpaceOpenTimePo); |
| | | |
| | | } |
| | | flag = communitySpaceOpenTimeV1InnerServiceSMOImpl.saveCommunitySpaceOpenTimes(communitySpaceOpenTimePos); |
| | | if (flag < 1) { |
| | | throw new CmdException("保存数据失败"); |
| | | } |
| | | cmdDataFlowContext.setResponseEntity(ResultVo.success()); |
| | | } |
| | | } |