Merge remote-tracking branch 'origin/main'

main
dongdingding 10 months ago
commit 7aadd2c975

@ -0,0 +1,105 @@
package com.mudu.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mudu.base.controller.BaseController;
import com.mudu.base.domain.AjaxResult;
import com.mudu.entity.ASafeBqbhpx;
import com.mudu.service.ASafeBqbhpxService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.io.Serializable;
import java.util.List;
/**
* (ASafeBqbhpx)
*
* @author wu
* @since 2024-04-26 16:43:53
*/
@RestController
@RequestMapping("pharmaceuticals/aSafeBqbhpx")
@Api(tags = "班前班后表")
@Transactional(rollbackFor = Exception.class)
public class ASafeBqbhpxController extends BaseController {
/**
*
*/
@Resource
private ASafeBqbhpxService aSafeBqbhpxService;
/**
*
*
* @param page
* @param aSafeBqbhpx
* @return
*/
@GetMapping
@ApiOperation(value = "分页条件查询班前班后表", response = ASafeBqbhpx.class)
public AjaxResult page(Page<ASafeBqbhpx> page, ASafeBqbhpx aSafeBqbhpx) {
return success(aSafeBqbhpxService.page(page, new QueryWrapper<>(aSafeBqbhpx)));
}
/**
*
*
* @param id
* @return
*/
@GetMapping("{id}")
@ApiOperation(value = "通过主键查询单条班前班后表", response = ASafeBqbhpx.class)
public AjaxResult getById(@PathVariable Serializable id) {
return success(aSafeBqbhpxService.getById(id));
}
/**
*
*
* @param aSafeBqbhpx
* @return
*/
@PostMapping
@ApiOperation(value = "新增班前班后表", response = ASafeBqbhpx.class)
public AjaxResult insert(@RequestBody ASafeBqbhpx aSafeBqbhpx) {
return success(aSafeBqbhpxService.save(aSafeBqbhpx));
}
/**
*
*
* @param aSafeBqbhpx
* @return
*/
@PutMapping
@ApiOperation(value = "修改班前班后表")
public AjaxResult update(@RequestBody ASafeBqbhpx aSafeBqbhpx) {
return success(aSafeBqbhpxService.updateById(aSafeBqbhpx));
}
/**
*
*
* @param idList
* @return
*/
@DeleteMapping
@ApiOperation(value = "删除班前班后表")
public AjaxResult delete(@RequestParam("idList") List<Long> idList) {
return success(aSafeBqbhpxService.removeByIds(idList));
}
}

@ -0,0 +1,105 @@
package com.mudu.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mudu.base.controller.BaseController;
import com.mudu.base.domain.AjaxResult;
import com.mudu.entity.ASafeQyzypgl;
import com.mudu.service.ASafeQyzypglService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.io.Serializable;
import java.util.List;
/**
* (ASafeQyzypgl)
*
* @author wu
* @since 2024-04-26 16:43:52
*/
@RestController
@RequestMapping("pharmaceuticals/aSafeQyzypgl")
@Api(tags = "")
@Transactional(rollbackFor = Exception.class)
public class ASafeQyzypglController extends BaseController {
/**
*
*/
@Resource
private ASafeQyzypglService aSafeQyzypglService;
/**
*
*
* @param page
* @param aSafeQyzypgl
* @return
*/
@GetMapping
@ApiOperation(value = "分页条件查询", response = ASafeQyzypgl.class)
public AjaxResult page(Page<ASafeQyzypgl> page, ASafeQyzypgl aSafeQyzypgl) {
return success(aSafeQyzypglService.page(page, new QueryWrapper<>(aSafeQyzypgl)));
}
/**
*
*
* @param id
* @return
*/
@GetMapping("{id}")
@ApiOperation(value = "通过主键查询单条", response = ASafeQyzypgl.class)
public AjaxResult getById(@PathVariable Serializable id) {
return success(aSafeQyzypglService.getById(id));
}
/**
*
*
* @param aSafeQyzypgl
* @return
*/
@PostMapping
@ApiOperation(value = "新增", response = ASafeQyzypgl.class)
public AjaxResult insert(@RequestBody ASafeQyzypgl aSafeQyzypgl) {
return success(aSafeQyzypglService.save(aSafeQyzypgl));
}
/**
*
*
* @param aSafeQyzypgl
* @return
*/
@PutMapping
@ApiOperation(value = "修改")
public AjaxResult update(@RequestBody ASafeQyzypgl aSafeQyzypgl) {
return success(aSafeQyzypglService.updateById(aSafeQyzypgl));
}
/**
*
*
* @param idList
* @return
*/
@DeleteMapping
@ApiOperation(value = "删除")
public AjaxResult delete(@RequestParam("idList") List<Long> idList) {
return success(aSafeQyzypglService.removeByIds(idList));
}
}

@ -0,0 +1,111 @@
package com.mudu.entity;
import java.time.LocalDateTime;
import java.util.Date;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModel;
import lombok.Data;
/**
* (ASafeBqbhpx)
*
* @author wu
* @since 2024-04-26 16:43:53
*/
@Data
@ApiModel("班前班后表实体类")
@TableName(value = "a_safe_bqbhpx")
public class ASafeBqbhpx implements Serializable {
private static final long serialVersionUID = -66341095192129852L;
@TableId(type = IdType.ASSIGN_UUID)
@ApiModelProperty(value = "信息编号")
private String xxbh;
/**
*
*/
@ApiModelProperty(value = "企业编号")
private String qybh;
/**
*
*/
@ApiModelProperty(value = "班组名称")
private String bzmc;
/**
*
*/
@ApiModelProperty(value = "班组长姓名")
private String bzzxm;
/**
*
*/
@ApiModelProperty(value = "参培人数")
private Integer cprs;
/**
*
*/
@ApiModelProperty(value = "培训时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date pxkssj;
/**
*
*/
@ApiModelProperty(value = "宣传内容简述")
private String xcnrjs;
/**
*
*/
@ApiModelProperty(value = "行政区划")
private String xzqh;
/**
*
*/
@ApiModelProperty(value = "行政区划名称")
private String xzqhmc;
/**
*
*/
@ApiModelProperty(value = "培训现场照片")
private String pxxctp;
/**
*
*/
@ApiModelProperty(value = "入库人员")
private String rkry;
/**
*
*/
@ApiModelProperty(value = "更新人员")
private String gxry;
/**
*
*/
@ApiModelProperty(value = "入库时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private LocalDateTime rksj;
/**
*
*/
@ApiModelProperty(value = "更新时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private LocalDateTime gxsj;
/**
*
*/
@ApiModelProperty(value = "记录状态")
private Integer jlzt;
}

@ -0,0 +1,136 @@
package com.mudu.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
/**
* (ASafeQyzypgl)
*
* @author wu
* @since 2024-04-26 16:43:52
*/
@Data
@ApiModel("实体类")
@TableName(value = "a_safe_qyzypgl")
public class ASafeQyzypgl implements Serializable {
private static final long serialVersionUID = -69045420615258953L;
/**
*
*/
@TableId(type = IdType.ASSIGN_UUID)
@ApiModelProperty(value = "信息编号")
private String xxbh;
/**
* id
*/
@ApiModelProperty(value = "作业类型id")
private String zylxid;
/**
* value
*/
@ApiModelProperty(value = "作业类型value")
private String zylxvalue;
/**
*
*/
@ApiModelProperty(value = "作业时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date zysj;
/**
*
*/
@ApiModelProperty(value = "作业人员")
private String zyry;
/**
*
*/
@ApiModelProperty(value = "作业地点")
private String zydd;
/**
*
*/
@ApiModelProperty(value = "作业方式")
private String zyfs;
/**
*
*/
@ApiModelProperty(value = "作业原因")
private String zyyy;
/**
*
*/
@ApiModelProperty(value = "风险描述")
private String fxms;
/**
*
*/
@ApiModelProperty(value = "防范措施")
private String ffcs;
/**
* 0- 1- 2-
*/
@ApiModelProperty(value = "作业状态 0-待签名 1-待作业 2-已作业")
private String zyzt;
/**
*
*/
@ApiModelProperty(value = "企业编号")
private String qybh;
/**
*
*/
@ApiModelProperty(value = "企业名称")
private String qymc;
/**
*
*/
@ApiModelProperty(value = "所属部门")
private String ssbm;
/**
*
*/
@ApiModelProperty(value = "入库时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private LocalDateTime rksj;
/**
*
*/
@ApiModelProperty(value = "更新时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private LocalDateTime gxsj;
/**
*
*/
@ApiModelProperty(value = "入库人员")
private String rkry;
/**
*
*/
@ApiModelProperty(value = "更新人员")
private String gxry;
/**
*
*/
@ApiModelProperty(value = "记录状态")
private Integer jlzt;
/**
*
*/
@ApiModelProperty(value = "监护人员")
private String jhry;
}

@ -0,0 +1,15 @@
package com.mudu.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mudu.entity.ASafeBqbhpx;
/**
* (ASafeBqbhpx)访
*
* @author wu
* @since 2024-04-26 16:43:53
*/
public interface ASafeBqbhpxMapper extends BaseMapper<ASafeBqbhpx> {
}

@ -0,0 +1,15 @@
package com.mudu.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mudu.entity.ASafeQyzypgl;
/**
* (ASafeQyzypgl)访
*
* @author wu
* @since 2024-04-26 16:43:52
*/
public interface ASafeQyzypglMapper extends BaseMapper<ASafeQyzypgl> {
}

@ -1,4 +1,4 @@
package com.mudu.controller;
package com.mudu.quartz;
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.util.StrUtil;
@ -6,11 +6,35 @@ import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.mudu.base.domain.AjaxResult;
import com.mudu.entity.*;
import com.mudu.entity.ACheckQuatzEntity;
import com.mudu.entity.ACheckQuatzZichaEntity;
import com.mudu.entity.ASafeQyjcxx;
import com.mudu.entity.ASafeRwfj;
import com.mudu.entity.ASafeRwzq;
import com.mudu.entity.ASafeXcrw;
import com.mudu.entity.ASafeXcrwjcx;
import com.mudu.entity.ASafeXcrwjcxzgxx;
import com.mudu.entity.ASafeXcrwwz;
import com.mudu.entity.ASafeYhzgxx;
import com.mudu.entity.ASafeZcrw;
import com.mudu.entity.ASafeZcrwjl;
import com.mudu.entity.ASafeZcrwwz;
import com.mudu.entity.SzsASafeZcyhxx;
import com.mudu.entity.dto.request.ACheckQuatzRequest;
import com.mudu.entity.dto.request.ACheckQuatzZichaRequest;
import com.mudu.entity.dto.response.ACheckXcTpResponse;
import com.mudu.service.*;
import com.mudu.service.ASafeQyjcxxService;
import com.mudu.service.ASafeRwfjService;
import com.mudu.service.ASafeRwzqService;
import com.mudu.service.ASafeXcrwService;
import com.mudu.service.ASafeXcrwjcxService;
import com.mudu.service.ASafeXcrwjcxzgxxService;
import com.mudu.service.ASafeXcrwwzService;
import com.mudu.service.ASafeYhzgxxService;
import com.mudu.service.ASafeZcrwService;
import com.mudu.service.ASafeZcrwjlService;
import com.mudu.service.ASafeZcrwwzService;
import com.mudu.service.SzsASafeZcyhxxService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
@ -36,7 +60,7 @@ import static com.mudu.base.domain.AjaxResult.success;
@Transactional(rollbackFor = Exception.class)
@Configuration
@EnableScheduling
public class AcheckTaskController {
public class AcheckTaskQuartz {
/**
*
@ -113,10 +137,7 @@ public class AcheckTaskController {
// @PostMapping("/insert")
// @ApiOperation(value = "新增创建时间为昨天且处于审批通过的工单数据")
public AjaxResult selectAll() throws ParseException {
String responseList = HttpRequest.post(imUrl)
.contentType("application/x-www-form-urlencoded;charset=UTF-8")
.execute()
.body();
String responseList = HttpRequest.post(imUrl).contentType("application/x-www-form-urlencoded;charset=UTF-8").execute().body();
JSONObject jsonResponseList = JSON.parseObject(responseList);
String dataList = jsonResponseList.getString("data");
if (StrUtil.isEmpty(dataList)) {
@ -136,11 +157,7 @@ public class AcheckTaskController {
//根据工单获取数据
JSONObject jsonObject = new JSONObject();
jsonObject.put("improvingNo", a.getImprovingNo());
String response = HttpRequest.post(url)
.contentType("application/x-www-form-urlencoded;charset=UTF-8")
.body(jsonObject.toJSONString())
.execute()
.body();
String response = HttpRequest.post(url).contentType("application/x-www-form-urlencoded;charset=UTF-8").body(jsonObject.toJSONString()).execute().body();
JSONObject jsonResponse = JSON.parseObject(response);
// 提取数据
String data = jsonResponse.getString("data");
@ -569,13 +586,11 @@ public class AcheckTaskController {
@Scheduled(cron = "0 0 4 * * ? ")
//@Scheduled(cron = "0 58 18 * * ?")
// @PostMapping("/zicha")
// @ApiOperation(value = "自查")
public AjaxResult zicha() throws ParseException {
String responseList = HttpRequest.post(zcXxUrl)
.contentType("application/x-www-form-urlencoded;charset=UTF-8")
.execute()
.body();
String responseList = HttpRequest.post(zcXxUrl).contentType("application/x-www-form-urlencoded;charset=UTF-8").execute().body();
JSONObject jsonResponseList = JSON.parseObject(responseList);
String dataList = jsonResponseList.getString("data");
if (StrUtil.isEmpty(dataList)) {
@ -606,11 +621,7 @@ public class AcheckTaskController {
//根据工单获取数据
JSONObject jsonObject = new JSONObject();
jsonObject.put("imageRelationID", b.getImgId());
String response = HttpRequest.post(zcUrl)
.contentType("application/x-www-form-urlencoded;charset=UTF-8")
.body(jsonObject.toJSONString())
.execute()
.body();
String response = HttpRequest.post(zcUrl).contentType("application/x-www-form-urlencoded;charset=UTF-8").body(jsonObject.toJSONString()).execute().body();
JSONObject jsonResponse = JSON.parseObject(response);
// 提取数据
String data = jsonResponse.getString("data");

@ -0,0 +1,93 @@
package com.mudu.quartz;
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.mudu.entity.ASafeBqbhpx;
import com.mudu.entity.ASafeQyzypgl;
import com.mudu.service.ASafeBqbhpxService;
import com.mudu.service.ASafeQyzypglService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.util.List;
/**
*
*
* @author wu
* @since 2024/4/26 4:40
*/
//@RestController
//@RequestMapping("mudu/test")
//@Api(tags = "班前班后以及特殊作业的数据接收")
@Transactional(rollbackFor = Exception.class)
@Configuration
@EnableScheduling
public class BqbhTszyQuartz {
@Resource
private ASafeBqbhpxService safeBqbhpxService;
@Resource
private ASafeQyzypglService safeQyzypglService;
@Value("${bqbhUrl}")
private String bqbhUrl;
@Value("${tszyUrl}")
private String tszyUrl;
@Value("${api}")
private String api;
/**
*
*/
// @GetMapping("/bqbh")
// @ApiOperation(value = "保存班前班后数据")
@Scheduled(cron = "0 0 1 * * ? ")
public void saveBqbh() {
String res = HttpRequest.get(bqbhUrl).contentType("application/x-www-form-urlencoded;charset=UTF-8").execute().body();
JSONObject resObj = JSON.parseObject(res);
String dataList = resObj.getString("data");
if (StrUtil.isEmpty(dataList)) {
return;
}
List<ASafeBqbhpx> list = JSON.parseArray(dataList, ASafeBqbhpx.class);
list.forEach(x -> {
if (StrUtil.isNotEmpty(x.getPxxctp())) {
x.setPxxctp(api + x.getPxxctp());
}
});
if (CollectionUtil.isNotEmpty(list)) {
safeBqbhpxService.saveBatch(list);
}
}
/**
*
*/
// @GetMapping("/tszy")
// @ApiOperation(value = "保存特殊作业数据")
@Scheduled(cron = "0 0 1 * * ? ")
public void saveTszy() {
String res = HttpRequest.get(tszyUrl).contentType("application/x-www-form-urlencoded;charset=UTF-8").execute().body();
JSONObject resObj = JSON.parseObject(res);
String dataList = resObj.getString("data");
if (StrUtil.isEmpty(dataList)) {
return;
}
List<ASafeQyzypgl> list = JSON.parseArray(dataList, ASafeQyzypgl.class);
if (CollectionUtil.isNotEmpty(list)) {
safeQyzypglService.saveBatch(list);
}
}
}

@ -0,0 +1,15 @@
package com.mudu.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mudu.entity.ASafeBqbhpx;
/**
* (ASafeBqbhpx)
*
* @author wu
* @since 2024-04-26 16:43:53
*/
public interface ASafeBqbhpxService extends IService<ASafeBqbhpx> {
}

@ -0,0 +1,15 @@
package com.mudu.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mudu.entity.ASafeQyzypgl;
/**
* (ASafeQyzypgl)
*
* @author wu
* @since 2024-04-26 16:43:53
*/
public interface ASafeQyzypglService extends IService<ASafeQyzypgl> {
}

@ -0,0 +1,19 @@
package com.mudu.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mudu.mapper.ASafeBqbhpxMapper;
import com.mudu.entity.ASafeBqbhpx;
import com.mudu.service.ASafeBqbhpxService;
import org.springframework.stereotype.Service;
/**
* (ASafeBqbhpx)
*
* @author wu
* @since 2024-04-26 16:43:53
*/
@Service("aSafeBqbhpxService")
public class ASafeBqbhpxServiceImpl extends ServiceImpl<ASafeBqbhpxMapper, ASafeBqbhpx> implements ASafeBqbhpxService {
}

@ -0,0 +1,19 @@
package com.mudu.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mudu.mapper.ASafeQyzypglMapper;
import com.mudu.entity.ASafeQyzypgl;
import com.mudu.service.ASafeQyzypglService;
import org.springframework.stereotype.Service;
/**
* (ASafeQyzypgl)
*
* @author wu
* @since 2024-04-26 16:43:53
*/
@Service("aSafeQyzypglService")
public class ASafeQyzypglServiceImpl extends ServiceImpl<ASafeQyzypglMapper, ASafeQyzypgl> implements ASafeQyzypglService {
}

@ -48,4 +48,8 @@ api: http://221.229.220.83:8007/api/
imUrl: http://localhost:9028/mudu/quatz/get
#获取自查信息
zcXxUrl: http://localhost:9028/mudu/quatz/zicha
# 班前班后
bqbhUrl: http://localhost:9028/mudu/aSafeBqbhpx/findAll
# 特殊作业
tszyUrl: http://localhost:9028/mudu/aSafeQyzypgl/findAll

@ -2,13 +2,9 @@
# DataSource Config
spring:
datasource:
url: jdbc:mysql://localhost:3306/mudu?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root
password: adminadmin
#公司本地
# url: jdbc:mysql://localhost:3307/mudu?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
# username: root
# password: Admin123@
url: jdbc:mysql://2.38.12.18:23306/wzawb?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: wzawb
password: wzawbpassword
driverClassName: com.mysql.cj.jdbc.Driver
@ -36,14 +32,22 @@ knife4j:
url: http://localhost:9028
#工单url
improveUrl: http://localhost:9028/mudu/quatz/xctp
improveUrl: http://39.101.188.84:9028/mudu/quatz/xctp
#自查url
zcUrl: http://localhost:9028/mudu/quatz/zctp
zcUrl: http://39.101.188.84:9028/mudu/quatz/zctp
#图片路径
api: http://221.229.220.83:8007/api/
#获取工单信息
imUrl: http://localhost:9028/mudu/quatz/get
imUrl: http://39.101.188.84:9028/mudu/quatz/get
#获取自查信息
zcXxUrl: http://localhost:9028/mudu/quatz/zicha
zcXxUrl: http://39.101.188.84:9028/mudu/quatz/zicha
# 班前班后
bqbhUrl: http://39.101.188.84:9028/mudu/aSafeBqbhpx/findAll
# 特殊作业
tszyUrl: http://39.101.188.84:9028/mudu/aSafeQyzypgl/findAll
Loading…
Cancel
Save