api文档名称修改
This commit is contained in:
parent
a5220b6bdd
commit
d54e6f44b4
@ -13,6 +13,7 @@ import com.zhgd.xmgl.modules.ammeter.entity.*;
|
||||
import com.zhgd.xmgl.modules.ammeter.mapper.AmmeterRecordDetailMapper;
|
||||
import com.zhgd.xmgl.modules.ammeter.mapper.AmmeterSupplierRecordMapper;
|
||||
import com.zhgd.xmgl.modules.ammeter.service.*;
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.slf4j.Logger;
|
||||
@ -29,6 +30,7 @@ import java.util.List;
|
||||
|
||||
@Slf4j
|
||||
@RestController
|
||||
@Api(tags = "电表外部api")
|
||||
public class AmmeterCallBackController {
|
||||
private static final Logger logger = LoggerFactory.getLogger(AmmeterCallBackController.class);
|
||||
@Autowired
|
||||
|
||||
@ -3,6 +3,7 @@ package com.zhgd.xmgl.device.ammeter.controller;
|
||||
import com.zhgd.jeecg.common.api.vo.Result;
|
||||
import com.zhgd.xmgl.modules.ammeter.entity.AmmeterRecordDetail;
|
||||
import com.zhgd.xmgl.modules.ammeter.service.IAmmeterRecordDetailService;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -18,6 +19,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
**/
|
||||
@Slf4j
|
||||
@RestController
|
||||
@Api(tags = "电表外部api")
|
||||
public class AmmeterDataController {
|
||||
@Autowired
|
||||
private IAmmeterRecordDetailService ammeterRecordDetailService;
|
||||
|
||||
@ -17,6 +17,7 @@ import com.zhgd.xmgl.modules.water.mapper.WaterSupplierRecordMapper;
|
||||
import com.zhgd.xmgl.modules.water.service.*;
|
||||
import com.zhgd.xmgl.util.Base64;
|
||||
import com.zhgd.xmgl.util.DateUtils;
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections.MapUtils;
|
||||
@ -35,6 +36,7 @@ import java.util.Map;
|
||||
|
||||
@Slf4j
|
||||
@RestController
|
||||
@Api(tags = "水表外部api")
|
||||
public class CallBackController {
|
||||
private static final Logger logger = LoggerFactory.getLogger(CallBackController.class);
|
||||
|
||||
|
||||
@ -3,6 +3,7 @@ package com.zhgd.xmgl.device.water.controller;
|
||||
import com.zhgd.jeecg.common.api.vo.Result;
|
||||
import com.zhgd.xmgl.modules.water.entity.WaterMeterRecordDetail;
|
||||
import com.zhgd.xmgl.modules.water.service.IWaterMeterRecordDetailService;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -18,6 +19,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
**/
|
||||
@Slf4j
|
||||
@RestController
|
||||
@Api(tags = "水表外部调用接口api")
|
||||
public class WaterDataController {
|
||||
@Autowired
|
||||
private IWaterMeterRecordDetailService waterMeterRecordDetailService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/appVersion")
|
||||
@Slf4j
|
||||
@Api("APP版本管理相关Api")
|
||||
@Api(tags = "APP版本管理相关Api")
|
||||
public class AppVersionController {
|
||||
@Autowired
|
||||
private IAppVersionService appVersionService;
|
||||
|
||||
@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/computerAuth")
|
||||
@Slf4j
|
||||
@Api("服务器认证相关Api")
|
||||
@Api(tags = "服务器认证相关Api")
|
||||
public class ComputerAuthController {
|
||||
|
||||
@Autowired
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/organizationJob")
|
||||
@Slf4j
|
||||
@Api("组织岗位")
|
||||
@Api(tags = "组织岗位")
|
||||
public class OrganizationJobController {
|
||||
@Autowired
|
||||
private IOrganizationJobService organizationJobService;
|
||||
|
||||
@ -8,6 +8,7 @@ import com.zhgd.xmgl.modules.basicdata.service.impl.SystemUserServiceImpl;
|
||||
import com.zhgd.xmgl.util.MessageUtil;
|
||||
import com.zhgd.xmgl.util.sj.JwtRsaUtils;
|
||||
import com.zhgd.xmgl.util.sj.SjUnifiedAuthenticationHttpUtil;
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -31,6 +32,7 @@ import java.util.concurrent.TimeUnit;
|
||||
@Controller
|
||||
@Slf4j
|
||||
@RequestMapping("/xmgl/sj/unifiedAuthentication")
|
||||
@Api(tags = "三江统一登录api")
|
||||
public class SjLoginController {
|
||||
@Autowired
|
||||
private SjUnifiedAuthenticationHttpUtil sjUnifiedAuthenticationHttpUtil;
|
||||
|
||||
@ -27,7 +27,7 @@ import javax.servlet.http.HttpServletRequest;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/towerCollideAlarm")
|
||||
@Slf4j
|
||||
@Api("塔机设备防碰撞报警相关Api")
|
||||
@Api(tags = "塔机设备防碰撞报警相关Api")
|
||||
public class TowerCollideAlarmController {
|
||||
@Autowired
|
||||
private ITowerCollideAlarmService towerCollideAlarmService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/towerFault")
|
||||
@Slf4j
|
||||
@Api("塔机故障数据表相关Api")
|
||||
@Api(tags = "塔机故障数据表相关Api")
|
||||
public class TowerFaultController {
|
||||
@Autowired
|
||||
private ITowerFaultService towerFaultService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/carType")
|
||||
@Slf4j
|
||||
@Api("车辆类型表相关Api")
|
||||
@Api(tags = "车辆类型表相关Api")
|
||||
public class CarTypeController {
|
||||
@Autowired
|
||||
private ICarTypeService carTypeService;
|
||||
|
||||
@ -27,7 +27,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/electricalLockOperateRecord")
|
||||
@Slf4j
|
||||
@Api("配电箱锁开关操作记录相关Api")
|
||||
@Api(tags = "配电箱锁开关操作记录相关Api")
|
||||
public class ElectricalLockOperateRecordController {
|
||||
@Autowired
|
||||
private IElectricalLockOperateRecordService electricalLockOperateRecordService;
|
||||
|
||||
@ -33,7 +33,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/elevator")
|
||||
@Slf4j
|
||||
@Api("电梯")
|
||||
@Api(tags = "电梯")
|
||||
public class ElevatorController {
|
||||
@Autowired
|
||||
private IElevatorService elevatorService;
|
||||
|
||||
@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/deepExcavationMeasurePointThreshold")
|
||||
@Slf4j
|
||||
@Api("深基坑-测点警情设置相关Api")
|
||||
@Api(tags = "深基坑-测点警情设置相关Api")
|
||||
public class DeepExcavationMeasurePointThresholdController {
|
||||
//
|
||||
//
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialAcceptanceCheck")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505验收")
|
||||
@Api(tags = "港投材料验收")
|
||||
public class GtMaterialAcceptanceCheckController {
|
||||
@Autowired
|
||||
private IGtMaterialAcceptanceCheckService gtMaterialAcceptanceCheckService;
|
||||
|
||||
@ -31,7 +31,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialArticle")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505文章")
|
||||
@Api(tags = "港投材料文章")
|
||||
public class GtMaterialArticleController {
|
||||
@Autowired
|
||||
private IGtMaterialArticleService gtMaterialArticleService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialContractArrivalAcceptance")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial合同-到货验收")
|
||||
@Api(tags = "港投材料合同-到货验收")
|
||||
public class GtMaterialContractArrivalAcceptanceController {
|
||||
@Autowired
|
||||
private IGtMaterialContractArrivalAcceptanceService gtMaterialContractArrivalAcceptanceService;
|
||||
|
||||
@ -33,7 +33,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialContract")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial合同")
|
||||
@Api(tags = "港投材料合同")
|
||||
public class GtMaterialContractController {
|
||||
@Autowired
|
||||
private IGtMaterialContractService gtMaterialContractService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialContractPaymentRecord")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial合同-付款记录")
|
||||
@Api(tags = "港投材料合同-付款记录")
|
||||
public class GtMaterialContractPaymentRecordController {
|
||||
@Autowired
|
||||
private IGtMaterialContractPaymentRecordService gtMaterialContractPaymentRecordService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialDepartmentTeam")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0523部门班组")
|
||||
@Api(tags = "港投材料0523部门班组")
|
||||
public class GtMaterialDepartmentTeamController {
|
||||
@Autowired
|
||||
private IGtMaterialDepartmentTeamService gtMaterialDepartmentTeamService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialDevice")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial设备")
|
||||
@Api(tags = "港投材料设备")
|
||||
public class GtMaterialDeviceController {
|
||||
@Autowired
|
||||
private IGtMaterialDeviceService gtMaterialDeviceService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialDeviceMaintenanceRecord")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial设备维保记录")
|
||||
@Api(tags = "港投材料设备维保记录")
|
||||
public class GtMaterialDeviceMaintenanceRecordController {
|
||||
@Autowired
|
||||
private IGtMaterialDeviceMaintenanceRecordService gtMaterialDeviceMaintenanceRecordService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialDeviceMandatoryInspectionRecord")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial设备强制检验记录")
|
||||
@Api(tags = "港投材料设备强制检验记录")
|
||||
public class GtMaterialDeviceMandatoryInspectionRecordController {
|
||||
@Autowired
|
||||
private IGtMaterialDeviceMandatoryInspectionRecordService gtMaterialDeviceMandatoryInspectionRecordService;
|
||||
|
||||
@ -44,7 +44,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialInOutWarehouse")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial出入库")
|
||||
@Api(tags = "港投材料出入库")
|
||||
public class GtMaterialInOutWarehouseController {
|
||||
@Autowired
|
||||
private IGtMaterialInOutWarehouseService gtMaterialInOutWarehouseService;
|
||||
|
||||
@ -49,7 +49,7 @@ import com.alibaba.fastjson.JSON;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gtMaterialInvoiceRecord")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial合同-发票记录")
|
||||
@Api(tags = "港投材料合同-发票记录")
|
||||
public class GtMaterialInvoiceRecordController {
|
||||
@Autowired
|
||||
private IGtMaterialInvoiceRecordService gtMaterialInvoiceRecordService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialOperatingUnit")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0523作业单位")
|
||||
@Api(tags = "港投材料0523作业单位")
|
||||
public class GtMaterialOperatingUnitController {
|
||||
@Autowired
|
||||
private IGtMaterialOperatingUnitService gtMaterialOperatingUnitService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialPartyBuildingActivity")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505党建活动")
|
||||
@Api(tags = "港投材料党建活动")
|
||||
public class GtMaterialPartyBuildingActivityController {
|
||||
@Autowired
|
||||
private IGtMaterialPartyBuildingActivityService gtMaterialPartyBuildingActivityService;
|
||||
|
||||
@ -31,7 +31,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialPartyMember")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505党员")
|
||||
@Api(tags = "港投材料党员")
|
||||
public class GtMaterialPartyMemberController {
|
||||
@Autowired
|
||||
private IGtMaterialPartyMemberService gtMaterialPartyMemberService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialPointCheckIntoWarehouseDetail")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial出入库的物料详情")
|
||||
@Api(tags = "港投材料出入库的物料详情")
|
||||
public class GtMaterialPointCheckIntoWarehouseDetailController {
|
||||
@Autowired
|
||||
private IGtMaterialPointCheckIntoWarehouseDetailService gtMaterialPointCheckIntoWarehouseDetailService;
|
||||
|
||||
@ -33,7 +33,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialPurchaseDemandPlanning")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial采购需求计划")
|
||||
@Api(tags = "港投材料采购需求计划")
|
||||
public class GtMaterialPurchaseDemandPlanningController {
|
||||
@Autowired
|
||||
private IGtMaterialPurchaseDemandPlanningService gtMaterialPurchaseDemandPlanningService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialSampleTest")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505样品检测")
|
||||
@Api(tags = "港投材料样品检测")
|
||||
public class GtMaterialSampleTestController {
|
||||
@Autowired
|
||||
private IGtMaterialSampleTestService gtMaterialSampleTestService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialSendReceiveSample")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505送样收样")
|
||||
@Api(tags = "港投材料送样收样")
|
||||
public class GtMaterialSendReceiveSampleController {
|
||||
@Autowired
|
||||
private IGtMaterialSendReceiveSampleService gtMaterialSendReceiveSampleService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialSupplierEvaluationRecord")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial供应商评价记录")
|
||||
@Api(tags = "港投材料供应商评价记录")
|
||||
public class GtMaterialSupplierEvaluationRecordController {
|
||||
@Autowired
|
||||
private IGtMaterialSupplierEvaluationRecordService gtMaterialSupplierEvaluationRecordService;
|
||||
|
||||
@ -35,7 +35,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialTechnicalClarification")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0523技术交底")
|
||||
@Api(tags = "港投材料0523技术交底")
|
||||
public class GtMaterialTechnicalClarificationController {
|
||||
@Autowired
|
||||
private IGtMaterialTechnicalClarificationService gtMaterialTechnicalClarificationService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialTenderBid")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial招标-投标清单")
|
||||
@Api(tags = "港投材料招标-投标清单")
|
||||
public class GtMaterialTenderBidController {
|
||||
@Autowired
|
||||
private IGtMaterialTenderBidService gtMaterialTenderBidService;
|
||||
|
||||
@ -33,7 +33,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialTender")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial招标")
|
||||
@Api(tags = "港投材料招标")
|
||||
public class GtMaterialTenderController {
|
||||
@Autowired
|
||||
private IGtMaterialTenderService gtMaterialTenderService;
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialTenderRecord")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial招标-投标记录")
|
||||
@Api(tags = "港投材料招标-投标记录")
|
||||
public class GtMaterialTenderRecordController {
|
||||
@Autowired
|
||||
private IGtMaterialTenderRecordService gtMaterialTenderRecordService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialTestingInstitution")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505检测机构")
|
||||
@Api(tags = "港投材料检测机构")
|
||||
public class GtMaterialTestingInstitutionController {
|
||||
@Autowired
|
||||
private IGtMaterialTestingInstitutionService gtMaterialTestingInstitutionService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialVendor")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial供应商")
|
||||
@Api(tags = "港投材料供应商")
|
||||
public class GtMaterialVendorController {
|
||||
@Autowired
|
||||
private IGtMaterialVendorService gtMaterialVendorService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialWarehouseDetail")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0523库存的物料详情")
|
||||
@Api(tags = "港投材料库存的物料详情")
|
||||
public class GtMaterialWarehouseDetailController {
|
||||
@Autowired
|
||||
private IGtMaterialWarehouseDetailService gtMaterialWarehouseDetailService;
|
||||
|
||||
@ -32,7 +32,7 @@ import java.util.List;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/gt/gtMaterialWitnessSample")
|
||||
@Slf4j
|
||||
@Api(tags = "GtMaterial0505见证取样")
|
||||
@Api(tags = "港投材料见证取样")
|
||||
public class GtMaterialWitnessSampleController {
|
||||
@Autowired
|
||||
private IGtMaterialWitnessSampleService gtMaterialWitnessSampleService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/highFormworkAlarmData")
|
||||
@Slf4j
|
||||
@Api("高支模报警数据相关Api")
|
||||
@Api(tags = "高支模报警数据相关Api")
|
||||
public class HighFormworkAlarmDataController {
|
||||
@Autowired
|
||||
private IHighFormworkAlarmDataService highFormworkAlarmDataService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/highFormworkMeasurePointThreshold")
|
||||
@Slf4j
|
||||
@Api("高支模-测量点报警预警阀值相关Api")
|
||||
@Api(tags = "高支模-测量点报警预警阀值相关Api")
|
||||
public class HighFormworkMeasurePointThresholdController {
|
||||
@Autowired
|
||||
private IHighFormworkMeasurePointThresholdService highFormworkMeasurePointThresholdService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/inspectTaskItemRecord")
|
||||
@Slf4j
|
||||
@Api("检查任务-子任务")
|
||||
@Api(tags = "检查任务-子任务")
|
||||
public class InspectTaskItemRecordController {
|
||||
@Autowired
|
||||
private IInspectTaskItemRecordService inspectTaskItemRecordService;
|
||||
|
||||
@ -48,7 +48,7 @@ import com.alibaba.fastjson.JSON;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/houseTypeItem")
|
||||
@Slf4j
|
||||
@Api("户型-房间明细相关Api")
|
||||
@Api(tags = "户型-房间明细相关Api")
|
||||
public class HouseTypeItemController {
|
||||
@Autowired
|
||||
private IHouseTypeItemService houseTypeItemService;
|
||||
|
||||
@ -48,7 +48,7 @@ import com.alibaba.fastjson.JSON;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/massReboundSubitemMeasureRecord")
|
||||
@Slf4j
|
||||
@Api("质量回弹-子项测量结果记录相关Api")
|
||||
@Api(tags = "质量回弹-子项测量结果记录相关Api")
|
||||
public class MassReboundSubitemMeasureRecordController {
|
||||
@Autowired
|
||||
private IMassReboundSubitemMeasureRecordService massReboundSubitemMeasureRecordService;
|
||||
|
||||
@ -30,7 +30,7 @@ import java.util.stream.Collectors;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/projectFile")
|
||||
@Slf4j
|
||||
@Api("项目文件档案相关Api")
|
||||
@Api(tags = "项目文件档案相关Api")
|
||||
public class ProjectFileController {
|
||||
@Autowired
|
||||
private IProjectFileService projectFileService;
|
||||
|
||||
@ -36,7 +36,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/safetyPartyGroup")
|
||||
@Slf4j
|
||||
@Api("安全晨会相关Api")
|
||||
@Api(tags = "安全晨会相关Api")
|
||||
public class SafetyPartyGroupController {
|
||||
@Autowired
|
||||
private ISafetyPartyGroupService safetyPartyGroupService;
|
||||
|
||||
@ -9,6 +9,7 @@ import com.zhgd.xmgl.modules.realnamestatistics.entity.vo.WorkerMonthAttendanceS
|
||||
import com.zhgd.xmgl.modules.realnamestatistics.service.IProjectOperationsAnalysisService;
|
||||
import com.zhgd.xmgl.modules.worker.entity.TeamInfo;
|
||||
import com.zhgd.xmgl.modules.worker.entity.WorkerType;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiImplicitParam;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
@ -31,6 +32,7 @@ import java.util.Map;
|
||||
@Slf4j
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/projectOperationsAnalysis")
|
||||
@Api(tags = "项目统计和分析api")
|
||||
public class ProjectOperationsAnalysisController {
|
||||
@Autowired
|
||||
IProjectOperationsAnalysisService projectOperationsAnalysisService;
|
||||
|
||||
@ -3,6 +3,7 @@ package com.zhgd.xmgl.modules.realnamestatistics.controller;
|
||||
import com.zhgd.jeecg.common.api.vo.Result;
|
||||
import com.zhgd.xmgl.modules.realnamestatistics.entity.ProjectTotalStatistics;
|
||||
import com.zhgd.xmgl.modules.realnamestatistics.service.IProjectTotalStatisticsService;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
@ -21,6 +22,7 @@ import java.util.List;
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/xmgl/projectTotalStatistics")
|
||||
@Api(tags = "项目统计和分析api")
|
||||
public class ProjectTotalStatisticsController {
|
||||
@Autowired
|
||||
IProjectTotalStatisticsService projectTotalStatisticsService;
|
||||
|
||||
@ -52,7 +52,7 @@ import com.alibaba.fastjson.JSON;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/sjDeepFoundationEquipmentInformation")
|
||||
@Slf4j
|
||||
@Api(tags = "sj-深基坑设备信息")
|
||||
@Api(tags = "三江-深基坑设备信息")
|
||||
public class SjDeepFoundationEquipmentInformationController {
|
||||
@Autowired
|
||||
private ISjDeepFoundationEquipmentInformationService sjDeepFoundationEquipmentInformationService;
|
||||
|
||||
@ -51,7 +51,7 @@ import com.alibaba.fastjson.JSON;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/sjHighSupportMoldEquipmentInformation")
|
||||
@Slf4j
|
||||
@Api(tags = "sj-高支模设备信息")
|
||||
@Api(tags = "三江-高支模设备信息")
|
||||
public class SjHighSupportMoldEquipmentInformationController {
|
||||
@Autowired
|
||||
private ISjHighSupportMoldEquipmentInformationService sjHighSupportMoldEquipmentInformationService;
|
||||
|
||||
@ -31,7 +31,7 @@ import java.util.*;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/sjSafeEnvironmentFile")
|
||||
@Slf4j
|
||||
@Api(tags = "sj安全环保资料中心")
|
||||
@Api(tags = "三江安全环保资料中心")
|
||||
public class SjSafeEnvironmentFileController {
|
||||
@Autowired
|
||||
private ISjSafeEnvironmentFileService sjSafeEnvironmentFileService;
|
||||
|
||||
@ -49,7 +49,7 @@ import com.alibaba.fastjson.JSON;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/sjSafeEnvironmentFileType")
|
||||
@Slf4j
|
||||
@Api(tags = "sj安全环保资料中心文件类型")
|
||||
@Api(tags = "三江安全环保资料中心文件类型")
|
||||
public class SjSafeEnvironmentFileTypeController {
|
||||
@Autowired
|
||||
private ISjSafeEnvironmentFileTypeService sjSafeEnvironmentFileTypeService;
|
||||
|
||||
@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/standardDevRealTimeData")
|
||||
@Slf4j
|
||||
@Api("标养室设备实时数据相关Api")
|
||||
@Api(tags = "标养室设备实时数据相关Api")
|
||||
public class StandardDevRealTimeDataController {
|
||||
@Autowired
|
||||
private IStandardDevRealTimeDataService standardDevRealTimeDataService;
|
||||
|
||||
@ -27,7 +27,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/standardSampleNotice")
|
||||
@Slf4j
|
||||
@Api("标养室样品超期提醒相关Api")
|
||||
@Api(tags = "标养室样品超期提醒相关Api")
|
||||
public class StandardSampleNoticeController {
|
||||
@Autowired
|
||||
private IStandardSampleNoticeService standardSampleNoticeService;
|
||||
|
||||
@ -25,7 +25,7 @@ import java.util.Map;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/videoAlarm")
|
||||
@Slf4j
|
||||
@Api("视频设备-事件报警相关Api")
|
||||
@Api(tags = "视频设备-事件报警相关Api")
|
||||
public class VideoAlarmController {
|
||||
@Autowired
|
||||
private IVideoAlarmService videoAlarmService;
|
||||
|
||||
@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/workerAttendancePresence")
|
||||
@Slf4j
|
||||
@Api("考勤当前在场的人相关Api")
|
||||
@Api(tags = "考勤当前在场的人相关Api")
|
||||
public class WorkerAttendancePresenceController {
|
||||
@Autowired
|
||||
private IWorkerAttendancePresenceService workerAttendancePresenceService;
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
package com.zhgd.xmgl.modules.yunlianwanwu.middle;
|
||||
|
||||
import com.zhgd.xmgl.modules.yunlianwanwu.middle.service.MiddleService;
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
@ -13,6 +14,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
@RestController
|
||||
@RequestMapping("/xmgl/ylww/middle")
|
||||
@Slf4j
|
||||
@Api(tags = "云联万物的中间库api")
|
||||
public class MiddleController {
|
||||
|
||||
@Autowired
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user