Merge remote-tracking branch 'origin/dev2.0' into dev2.0

dev2.0
黄泽腾 2 years ago
commit e699316e91

@ -1,8 +1,9 @@
package com.glxp.api.constant;
//设备任务状态
public class DeviceStatus {
//设备任务状态
public static final int DEVICE_STATUS_TEMP_SAVE = 0; //草稿
public static final int DEVICE_STATUS_TEMP_UNDISTRIBUTTED = 1; //未分配
@ -14,5 +15,20 @@ public class DeviceStatus {
public static final int DEVICE_STATUS_TEMP_INSPECTED = 4; //已巡检
//设备状态
public static final int DEVICE_STATUS_NORMAL = 1; //正常
public static final int DEVICE_STATUS_REPAIRS = 2; //报修
public static final int DEVICE_STATUS_INSPECTION = 3; //巡检中
public static final int DEVICE_STATUS_MAINTAIN = 4; //维修中
public static final int DEVICE_STATUS_SCRAP = 5; //报废
public static final int DEVICE_STATUS_USE = 6; //使用中
public static final int DEVICE_STATUS_LEISURE = 7; //空闲
}

@ -1,15 +1,19 @@
package com.glxp.api.controller.inv;
import com.github.pagehelper.PageInfo;
import com.github.xiaoymin.knife4j.core.util.StrUtil;
import com.glxp.api.common.enums.ResultEnum;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.entity.basic.UdiEntity;
import com.glxp.api.entity.inv.DeptDeviceDetailEntity;
import com.glxp.api.req.inv.AddDeptDeviceRequest;
import com.glxp.api.req.inv.FilterDeptDeviceRequest;
import com.glxp.api.req.system.DeleteRequest;
import com.glxp.api.res.inv.DeptDeviceDetailResponse;
import com.glxp.api.service.inv.DeptDeviceDetailService;
import com.glxp.api.util.CustomUtil;
import com.glxp.api.util.udi.FilterUdiUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@ -17,6 +21,7 @@ import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.List;
/**
@ -37,7 +42,34 @@ public class DeptDeviceDetailController {
*/
@GetMapping("/udiwms/inv/deptDevice/filter")
public BaseResponse filterList(FilterDeptDeviceRequest filterDeptDeviceRequest) {
List<DeptDeviceDetailResponse> list = deptDeviceDetailService.filterList(filterDeptDeviceRequest);
List<DeptDeviceDetailResponse> list = new ArrayList<>();
if (StrUtil.isNotBlank(filterDeptDeviceRequest.getUdiCode())) {
filterDeptDeviceRequest =new FilterDeptDeviceRequest();
//用唯一编码查询
filterDeptDeviceRequest.setCode(filterDeptDeviceRequest.getUdiCode());
list = deptDeviceDetailService.filterList(filterDeptDeviceRequest);
if (CustomUtil.isEmpty(list)) {
//用设备udi码查询
filterDeptDeviceRequest.setCode(null);
filterDeptDeviceRequest.setOriginCode(filterDeptDeviceRequest.getUdiCode());
list = deptDeviceDetailService.filterList(filterDeptDeviceRequest);
if (CustomUtil.isEmpty(list)) {
//用DI/物资编码查询
filterDeptDeviceRequest.setOriginCode(null);
UdiEntity udiEntity = FilterUdiUtils.getUdi(filterDeptDeviceRequest.getUdiCode());
filterDeptDeviceRequest.setNameCode(udiEntity.getUdi());
filterDeptDeviceRequest.setBatchNo(udiEntity.getBatchNo());
filterDeptDeviceRequest.setProductionDate(udiEntity.getProduceDate());
filterDeptDeviceRequest.setExpireDate(udiEntity.getExpireDate());
filterDeptDeviceRequest.setSerialNo(udiEntity.getSerialNo());
list = deptDeviceDetailService.filterList(filterDeptDeviceRequest);
}
}
} else {
list = deptDeviceDetailService.filterList(filterDeptDeviceRequest);
}
PageInfo<DeptDeviceDetailResponse> pageInfo = new PageInfo<>(list);
return ResultVOUtils.page(pageInfo);
}

@ -0,0 +1,95 @@
package com.glxp.api.controller.system;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageInfo;
import com.glxp.api.annotation.AuthRuleAnnotation;
import com.glxp.api.common.enums.ResultEnum;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.controller.BaseController;
import com.glxp.api.entity.system.SysTableHeadEntity;
import com.glxp.api.req.system.DeleteRequest;
import com.glxp.api.req.system.SysTableHeadRequest;
import com.glxp.api.service.system.SysTableHeadService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
/**
*
*/
@Slf4j
@RestController
public class SysTableHeadController extends BaseController {
@Resource
SysTableHeadService sysTableHeadService;
@AuthRuleAnnotation("")
@GetMapping("/udiwms/sys/table/head/filter")
public BaseResponse filterPreInorder(SysTableHeadRequest sysTableHeadRequest) {
List<SysTableHeadEntity> list = sysTableHeadService.filterList(sysTableHeadRequest);
PageInfo<SysTableHeadEntity> pageInfo = new PageInfo<SysTableHeadEntity>(list);
return ResultVOUtils.page(pageInfo);
}
@AuthRuleAnnotation("")
@GetMapping("/udiwms/sys/table/head/find")
public BaseResponse findByPage(SysTableHeadRequest sysTableHeadRequest) {
if (StrUtil.isEmpty(sysTableHeadRequest.getPageCode())) {
return ResultVOUtils.error(500, "页面标识不能为空!");
}
List<SysTableHeadEntity> list = sysTableHeadService.list(new QueryWrapper<SysTableHeadEntity>().eq("pageCode", sysTableHeadRequest.getPageCode()));
return ResultVOUtils.success(list);
}
@AuthRuleAnnotation("")
@PostMapping("/udiwms/sys/table/head/save")
public BaseResponse save(@RequestBody SysTableHeadEntity sysTableHeadEntity,
BindingResult bindingResult) {
if (bindingResult.hasErrors()) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
}
boolean b = sysTableHeadService.save(sysTableHeadEntity);
if (!b) {
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
}
return ResultVOUtils.success("添加成功!");
}
@AuthRuleAnnotation("")
@PostMapping("/udiwms/sys/table/head/update")
public BaseResponse update(@RequestBody SysTableHeadEntity sysTableHeadEntity,
BindingResult bindingResult) {
if (bindingResult.hasErrors()) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
}
boolean b = sysTableHeadService.updateById(sysTableHeadEntity);
if (!b) {
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
}
return ResultVOUtils.success("修改成功!");
}
@AuthRuleAnnotation("")
@PostMapping("/udiwms/sys/table/head/delete")
public BaseResponse deleteById(@RequestBody DeleteRequest deleteRequest) {
boolean b = sysTableHeadService.removeById(deleteRequest.getId());
if (b)
return ResultVOUtils.success("删除成功");
else {
return ResultVOUtils.error(500, "删除失败");
}
}
}

@ -0,0 +1,15 @@
package com.glxp.api.dao.system;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.dao.BaseMapperPlus;
import com.glxp.api.entity.system.SysTableHeadEntity;
import com.glxp.api.req.system.SysTableHeadRequest;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface SysTableHeadMapper extends BaseMapperPlus<SysTableHeadMapper, SysTableHeadEntity, SysTableHeadEntity> {
List<SysTableHeadEntity> filterList(SysTableHeadRequest sysTableHeadRequest);
}

@ -184,4 +184,7 @@ public class DeptDeviceDetailEntity {
@TableField(value = "detailLocation")
private String detailLocation;
@TableField(value = "nameCode")
private String nameCode;
}

@ -131,4 +131,9 @@ public class DeviceInspectPlanEntity {
*/
private Integer useFrequency;
/**
*
*/
private Integer executeCount;
}

@ -0,0 +1,98 @@
package com.glxp.api.entity.system;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
@Data
@TableName(value = "sys_table_head")
public class SysTableHeadEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "pageName")
private String pageName;
/**
*
*/
@TableField(value = "pageCode")
private String pageCode;
/**
*
*/
@TableField(value = "response")
private String response;
/**
*
*/
@TableField(value = "`label`")
private String label;
/**
*
*/
@TableField(value = "prop")
private String prop;
/**
*
*/
@TableField(value = "width")
private Double width;
/**
*
*/
@TableField(value = "isShow")
private String isShow;
/**
*
*/
@TableField(value = "isAuto")
private String isAuto;
/**
* tooltip
*/
@TableField(value = "overflow")
private Boolean overflow;
/**
*
*/
@TableField(value = "sort")
private Integer sort;
/**
*
*/
@TableField(value = "customSort")
private Boolean customSort;
/**
*
*/
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
private static final long serialVersionUID = 1L;
}

@ -1,5 +1,6 @@
package com.glxp.api.req.inv;
import com.baomidou.mybatisplus.annotation.TableField;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
@ -56,4 +57,25 @@ public class FilterDeptDeviceRequest extends ListPageRequest {
private Integer id;
private String udiCode;
private String nameCode;
private String manufactory;
private String zczbhhzbapzbh;
private String supName;
private String productionDate;
private String expireDate;
private String serialNo;
private String manager;
}

@ -0,0 +1,76 @@
package com.glxp.api.req.system;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
import java.util.Date;
@Data
public class SysTableHeadRequest extends ListPageRequest {
private Integer id;
/**
*
*/
private String pageName;
/**
*
*/
private String pageCode;
/**
*
*/
private String response;
/**
*
*/
private String label;
/**
*
*/
private String prop;
/**
*
*/
private Double width;
/**
*
*/
private String isShow;
/**
*
*/
private String isAuto;
/**
* tooltip
*/
private Boolean overflow;
/**
*
*/
private Boolean customSort;
/**
*
*/
private String remark;
/**
*
*/
private Date updateTime;
}

@ -153,4 +153,6 @@ public class DeptDeviceDetailResponse {
private String invName;
private String orderIdFk;
private String nameCode;
}

@ -7,6 +7,7 @@ import com.github.pagehelper.PageHelper;
import com.glxp.api.common.enums.ResultEnum;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.constant.DeviceStatus;
import com.glxp.api.dao.inv.DeptDeviceDetailDao;
import com.glxp.api.dao.inv.DeviceReceiveOrderDao;
import com.glxp.api.dao.inv.DeviceReceiveOrderDetailDao;
@ -70,6 +71,7 @@ public class DeptDeviceDetailServiceImpl implements DeptDeviceDetailService {
deviceDetail.setRelId(receiveOrderDetailResponse.getRelId());
deviceDetail.setDeviceName(receiveOrderDetailResponse.getProductName());
deviceDetail.setGgxh(receiveOrderDetailResponse.getGgxh());
deviceDetail.setNameCode(receiveOrderDetailResponse.getNameCode());
deviceDetail.setBatchNo(receiveOrderDetailResponse.getBatchNo());
deviceDetail.setSerialNo(receiveOrderDetailResponse.getSerialNo());
deviceDetail.setProductionDate(receiveOrderDetailResponse.getProductionDate());
@ -80,7 +82,7 @@ public class DeptDeviceDetailServiceImpl implements DeptDeviceDetailService {
deviceDetail.setSupId(receiveOrderDetailResponse.getSupId());
deviceDetail.setSupName(receiveOrderDetailResponse.getSupName());
deviceDetail.setManager(receiveOrderEntity.getReceiveUser());
deviceDetail.setStatus(1);
deviceDetail.setStatus(DeviceStatus.DEVICE_STATUS_NORMAL);
deviceDetail.setAddType(1);
deviceDetail.setCreateUser(receiveOrderEntity.getAuditUser());
// deviceDetail.setCreateTime(date);

@ -0,0 +1,37 @@
package com.glxp.api.service.system;
import cn.hutool.core.util.StrUtil;
import com.github.pagehelper.PageHelper;
import com.glxp.api.req.system.SysTableHeadRequest;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.system.SysTableHeadEntity;
import com.glxp.api.dao.system.SysTableHeadMapper;
import javax.annotation.Resource;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
@Service
public class SysTableHeadService extends ServiceImpl<SysTableHeadMapper, SysTableHeadEntity> {
@Resource
SysTableHeadMapper sysTableHeadMapper;
public List<SysTableHeadEntity> filterList(SysTableHeadRequest sysTableHeadRequest) {
if (sysTableHeadRequest == null) {
return Collections.emptyList();
}
if (sysTableHeadRequest.getPage() != null) {
int offset = (sysTableHeadRequest.getPage() - 1) * sysTableHeadRequest.getLimit();
PageHelper.offsetPage(offset, sysTableHeadRequest.getLimit());
}
return sysTableHeadMapper.filterList(sysTableHeadRequest);
}
}

@ -4,7 +4,7 @@ server:
spring:
datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
jdbc-url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_wms_wmd?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
jdbc-url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_wms_pt?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: 123456
hikari:

@ -16,6 +16,7 @@
t.deviceName,
t.ggxh,
t.batchNo,
t.nameCode,
t.serialNo,
t.productionDate,
t.expireDate,
@ -58,6 +59,27 @@
<if test="batchNo != null and batchNo != ''">
AND t.batchNo like concat('%', #{batchNo}, '%')
</if>
<if test="manager != null and manager != ''">
AND t.manager like concat('%', #{manager}, '%')
</if>
<if test="nameCode != null and nameCode != ''">
AND t.nameCode like concat('%', #{nameCode}, '%')
</if>
<if test="manufactory != null and manufactory != ''">
AND t.manufactory like concat('%', #{manufactory}, '%')
</if>
<if test="zczbhhzbapzbh != null and zczbhhzbapzbh != ''">
AND t.zczbhhzbapzbh like concat('%', #{zczbhhzbapzbh}, '%')
</if>
<if test="serialNo != null and serialNo != ''">
AND t.serialNo = #{serialNo}
</if>
<if test="productionDate != null and productionDate != ''">
AND t.productionDate = #{productionDate}
</if>
<if test="expireDate != null and expireDate != ''">
AND t.expireDate = #{expireDate}
</if>
<if test="status != null">
AND t.status = #{status}
</if>

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.system.SysTableHeadMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.system.SysTableHeadEntity">
<!--@mbg.generated-->
<!--@Table sys_table_head-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="pageName" jdbcType="VARCHAR" property="pageName"/>
<result column="pageCode" jdbcType="VARCHAR" property="pageCode"/>
<result column="response" jdbcType="VARCHAR" property="response"/>
<result column="label" jdbcType="VARCHAR" property="label"/>
<result column="prop" jdbcType="VARCHAR" property="prop"/>
<result column="width" jdbcType="DOUBLE" property="width"/>
<result column="isShow" jdbcType="VARCHAR" property="isShow"/>
<result column="isAuto" jdbcType="VARCHAR" property="isAuto"/>
<result column="overflow" jdbcType="TINYINT" property="overflow"/>
<result column="sort" jdbcType="INTEGER" property="sort"/>
<result column="customSort" jdbcType="TINYINT" property="customSort"/>
<result column="remark" jdbcType="VARCHAR" property="remark"/>
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id,pageName, pageCode, response, `label`, prop, width, isShow, isAuto, overflow, sort, customSort,
remark, updateTime
</sql>
<select id="filterList" parameterType="com.glxp.api.req.system.SysTableHeadRequest"
resultType="com.glxp.api.entity.system.SysTableHeadEntity">
SELECT *
FROM sys_table_head
<where>
<if test="pageName != null and pageName != ''">
AND `pageName` like CONCAT('%', #{pageName}, '%')
</if>
<if test="pageCode != null and pageCode != ''">
AND `pageCode` like CONCAT('%', #{pageCode}, '%')
</if>
<if test="label != null and label != ''">
AND `label` like CONCAT('%', #{label}, '%')
</if>
<if test="prop != null and prop != ''">
AND `prop` like CONCAT('%', #{prop}, '%')
</if>
<if test="isShow != null and isShow != ''">
AND `isShow` = #{isShow}
</if>
<if test="overflow != null and overflow != ''">
AND `overflow` = #{overflow}
</if>
</where>
</select>
</mapper>

@ -180,12 +180,18 @@ CALL Pro_Temp_ColumnWork('sync_data_set', 'deviceTask', 'tinyint', 1);
# INSERT ignore INTO `udi_wms_wmd`.`auth_menu`(`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2001, '我的领用单', 1685, 1, 'inout/receive/receiveMySearch', 'inout/receive/receiveMySearch', NULL, 1, 0, 'C', '0', '0', NULL, NULL, '超级用户', '2023-08-14 10:35:30', NULL, NULL, NULL);
#
INSERT ignore INTO `sys_param_config`(`id`, `parentId`, `paramName`, `paramKey`, `paramValue`, `paramStatus`, `paramType`, `paramExplain`, `updateTime`) VALUES (20068, 0, '设备领用是否选取耗材字段', 'device_product', '0', 1, 0, '01', NULL);
INSERT ignore INTO `sys_pdf_template_relevance_label` (`id`, `templateId`, `customerId`, `adminId`, `moduleId`, `localAction`, `remark1`, `remark2`, `remark3`, `printType`, `modelKey`, `updateTime`) VALUES (5, 3, 110, 0, 9, '设备打印', NULL, NULL, NULL, NULL, 'lable', '2023-06-25 15:18:37');
INSERT ignore INTO `sys_param_config`(`id`, `parentId`, `paramName`, `paramKey`, `paramValue`, `paramStatus`,
`paramType`, `paramExplain`, `updateTime`)
VALUES (20068, 0, '设备领用是否选取耗材字段', 'device_product', '0', 1, 0, '01', NULL);
INSERT ignore INTO `sys_pdf_template_relevance_label` (`id`, `templateId`, `customerId`, `adminId`, `moduleId`,
`localAction`, `remark1`, `remark2`, `remark3`, `printType`,
`modelKey`, `updateTime`)
VALUES (5, 3, 110, 0, 9, '设备打印', NULL, NULL, NULL, NULL, 'lable', '2023-06-25 15:18:37');
CREATE TABLE IF NOT EXISTS `device_asset_cert` (
CREATE TABLE IF NOT EXISTS `device_asset_cert`
(
`id` bigint NOT NULL,
`devCodeFk` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '设备资产编码外键',
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '证书名称',
@ -201,7 +207,10 @@ CREATE TABLE IF NOT EXISTS `device_asset_cert` (
`updateUser` datetime(0) NULL DEFAULT NULL COMMENT '更新人',
`updateTime` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC;
) ENGINE = InnoDB
CHARACTER SET = utf8mb4
COLLATE = utf8mb4_0900_ai_ci
ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of device_asset_cert
@ -210,7 +219,8 @@ CREATE TABLE IF NOT EXISTS `device_asset_cert` (
SET FOREIGN_KEY_CHECKS = 1;
CREATE TABLE IF NOT EXISTS `device_asset_user` (
CREATE TABLE IF NOT EXISTS `device_asset_user`
(
`id` bigint NOT NULL COMMENT '雪花ID',
`devCodeFk` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '设备资产编码',
`userName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '相关人员名称',
@ -222,10 +232,14 @@ CREATE TABLE IF NOT EXISTS `device_asset_user` (
`updateUser` varchar(0) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '更新人',
`updateTime` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
) ENGINE = InnoDB
CHARACTER SET = utf8mb4
COLLATE = utf8mb4_0900_ai_ci
ROW_FORMAT = Dynamic;
CREATE TABLE IF NOT EXISTS `device_asset_usage` (
CREATE TABLE IF NOT EXISTS `device_asset_usage`
(
`id` bigint NOT NULL COMMENT '雪花ID',
`code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '使用记录号',
`user` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '使用人',
@ -237,9 +251,17 @@ CREATE TABLE IF NOT EXISTS `device_asset_usage` (
`updateUser` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '更新人',
`updateTime` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
) ENGINE = InnoDB
CHARACTER SET = utf8mb4
COLLATE = utf8mb4_0900_ai_ci
ROW_FORMAT = Dynamic;
CALL Pro_Temp_ColumnWork('dept_device_detail', 'curUser', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('dept_device_detail', 'location', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('dept_device_detail', 'detailLocation', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('dept_device_detail', 'nameCode', 'varchar(255)', 1);
CALL Pro_Temp_ColumnWork('device_inspect_plan', 'executeCount', 'int', 1);
CALL Pro_Temp_ColumnWork('device_inspect_plan', 'useFrequency', 'int', 1);

Loading…
Cancel
Save