package com.java110.acct.bmo.systemGoldSetting.impl; import com.java110.acct.bmo.systemGoldSetting.IGetSystemGoldSettingBMO; import com.java110.dto.systemGoldSetting.SystemGoldSettingDto; import com.java110.intf.acct.ISystemGoldSettingInnerServiceSMO; import com.java110.vo.ResultVo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; import java.util.ArrayList; import java.util.List; @Service("getSystemGoldSettingBMOImpl") public class GetSystemGoldSettingBMOImpl implements IGetSystemGoldSettingBMO { @Autowired private ISystemGoldSettingInnerServiceSMO systemGoldSettingInnerServiceSMOImpl; /** * @param systemGoldSettingDto * @return 订单服务能够接受的报文 */ public ResponseEntity get(SystemGoldSettingDto systemGoldSettingDto) { int count = systemGoldSettingInnerServiceSMOImpl.querySystemGoldSettingsCount(systemGoldSettingDto); List systemGoldSettingDtos = null; if (count > 0) { systemGoldSettingDtos = systemGoldSettingInnerServiceSMOImpl.querySystemGoldSettings(systemGoldSettingDto); } else { systemGoldSettingDtos = new ArrayList<>(); } ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (double) systemGoldSettingDto.getRow()), count, systemGoldSettingDtos); ResponseEntity responseEntity = new ResponseEntity(resultVo.toString(), HttpStatus.OK); return responseEntity; } }