From 66750ae75ce76fe8d77d9622915ac1677953d06d Mon Sep 17 00:00:00 2001 From: Gjm <你的邮箱> Date: Mon, 13 Apr 2026 16:53:00 +0800 Subject: [PATCH] =?UTF-8?q?feat(job):=20=E6=B7=BB=E5=8A=A0ERP=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E6=95=B0=E6=8D=AE=E4=BF=A1=E6=81=AF=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 创建ErpBasicDataInformationJob实现增量同步计量单位、往来单位、批次号、批次和仓库数据 - 新增ErpBfMeasureUnit实体类用于存储计量单位信息并配置数据库映射关系 - 新增ErpBfPartner实体类用于存储往来单位信息并配置数据库映射关系 - 新增ErpScmBaseSn实体类用于存储批次号信息并配置数据库映射关系 - 新增ErpScmBatch实体类用于存储批次信息并配置数据库映射关系 - 实现各实体对应的Mapper接口及从ERP数据库查询和按时间戳同步的方法 - 添加异常处理机制确保各数据类型同步失败时不影响其他数据类型的同步 - 集成Quartz定时任务框架支持基础数据的周期性增量同步 --- lidee-core/pom.xml | 1 + .../job/ErpBasicDataInformationJob.java | 58 +- .../framework/entity/ErpDtaSyncLogEntity.java | 45 + .../mapper/erp/ErpBfMeasureUnitMapper.java | 109 +- .../mapper/erp/ErpBfPartnerMapper.java | 421 ++++- .../mapper/erp/ErpDataSyncLogMapper.java | 18 + .../mapper/erp/ErpScmBaseSnMapper.java | 486 +++++- .../mapper/erp/ErpScmBatchMapper.java | 405 ++++- .../mapper/erp/ErpScmWarehouseMapper.java | 159 +- .../service/erp/ErpDataSyncLogService.java | 9 + .../erp/impl/ErpDataSyncLogServiceImpl.java | 31 + .../constant/lideeYunJiBaseConstant.java | 3 + sql/gzgl.sql | 1400 +---------------- 13 files changed, 1693 insertions(+), 1452 deletions(-) create mode 100644 lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ErpDtaSyncLogEntity.java create mode 100644 lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpDataSyncLogMapper.java create mode 100644 lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/ErpDataSyncLogService.java create mode 100644 lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/impl/ErpDataSyncLogServiceImpl.java diff --git a/lidee-core/pom.xml b/lidee-core/pom.xml index a899d1c..c60cc69 100644 --- a/lidee-core/pom.xml +++ b/lidee-core/pom.xml @@ -97,6 +97,7 @@ orai18n 21.1.0.0 + com.github.pagehelper pagehelper-spring-boot-starter diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/config/job/ErpBasicDataInformationJob.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/config/job/ErpBasicDataInformationJob.java index ce62dac..4e4250c 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/config/job/ErpBasicDataInformationJob.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/config/job/ErpBasicDataInformationJob.java @@ -2,11 +2,15 @@ package com.lideeyunji.core.framework.config.job; import com.lideeyunji.core.framework.entity.*; import com.lideeyunji.core.framework.mapper.erp.*; +import com.lideeyunji.core.framework.service.erp.ErpDataSyncLogService; +import com.lideeyunji.tool.framework.common.constant.lideeYunJiBaseConstant; import com.lideeyunji.tool.framework.quartz.core.handler.JobHandler; +import com.lideeyunji.tool.framework.yunji.component.redis.lideeYunjiRedisUtils; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import javax.annotation.Resource; +import java.util.Date; import java.util.List; @Component("ErpBasicDataInformationJob") @@ -28,43 +32,65 @@ public class ErpBasicDataInformationJob implements JobHandler { @Resource private ErpScmWarehouseMapper erpScmWarehouseMapper; + @Resource + private ErpDataSyncLogService erpDataSyncLogService; + + @Resource + private lideeYunjiRedisUtils redisUtil; + + private static final String erpLastUpdateTIme = "erp_update_time"; + @Override public String execute(String param) throws Exception { log.info("*********** 开始同步基础数据信息 ************"); + ErpDtaSyncLogEntity latestLog = erpDataSyncLogService.selectone(lideeYunJiBaseConstant.ERP_DATASOURCE); + Date time = latestLog != null ? latestLog.getLastUpdateTime() : null; try { - syncMeasureUnitIncrement(); + syncMeasureUnitIncrement(time); } catch (Exception e) { log.error("增量同步计量单位数据失败", e); } try { - syncPartnerIncrement(); + syncPartnerIncrement(time); } catch (Exception e) { log.error("增量同步往来单位数据失败", e); } try { - syncBaseSnIncrement(); + syncBaseSnIncrement(time); } catch (Exception e) { log.error("增量同步批次号数据失败", e); } try { - syncBatchIncrement(); + syncBatchIncrement(time); } catch (Exception e) { log.error("增量同步批次数据失败", e); } try { - syncWarehouseIncrement(); + syncWarehouseIncrement(time); } catch (Exception e) { log.error("增量同步仓库数据失败", e); } + Date now = new Date(); +// if (latestLog != null) { +// erpDataSyncLogMapper.update(null, +// new com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper() +// .eq(ErpDtaSyncLogEntity::getId, latestLog.getId()) +// .set(ErpDtaSyncLogEntity::getLastUpdateTime, now) +// ); +// } else { +// ErpDtaSyncLogEntity newLog = new ErpDtaSyncLogEntity(); +// newLog.setLastUpdateTime(now); +// erpDataSyncLogMapper.insert(newLog); +// } log.info("========== 所有ERP数据增量同步完成 =========="); return "========== 所有ERP数据增量同步完成 =========="; } - - public int[] syncMeasureUnitIncrement() { + public int[] syncMeasureUnitIncrement(Date time) { log.info("开始增量同步计量单位数据..."); - List dataList = erpBfMeasureUnitMapper.selectMeasureUnitFromErp(); + + List dataList = erpBfMeasureUnitMapper.selectMeasureUnitFromErp(time); if (dataList == null || dataList.isEmpty()) { log.info("计量单位数据为空,跳过同步"); return new int[]{0, 0, 0}; @@ -84,9 +110,9 @@ public class ErpBasicDataInformationJob implements JobHandler { return new int[]{insertCount, updateCount, skipCount}; } - public int[] syncPartnerIncrement() { + public int[] syncPartnerIncrement(Date time) { log.info("开始增量同步往来单位数据..."); - List dataList = erpBfPartnerMapper.selectPartnerFromErp(); + List dataList = erpBfPartnerMapper.selectPartnerFromErp(time); if (dataList == null || dataList.isEmpty()) { log.info("往来单位数据为空,跳过同步"); return new int[]{0, 0, 0}; @@ -106,9 +132,9 @@ public class ErpBasicDataInformationJob implements JobHandler { return new int[]{insertCount, updateCount, skipCount}; } - public int[] syncBaseSnIncrement() { + public int[] syncBaseSnIncrement(Date time) { log.info("开始增量同步批次号数据..."); - List dataList = erpScmBaseSnMapper.selectBaseSnFromErp(); + List dataList = erpScmBaseSnMapper.selectBaseSnFromErp(time); if (dataList == null || dataList.isEmpty()) { log.info("批次号数据为空,跳过同步"); return new int[]{0, 0, 0}; @@ -128,9 +154,9 @@ public class ErpBasicDataInformationJob implements JobHandler { return new int[]{insertCount, updateCount, skipCount}; } - public int[] syncBatchIncrement() { + public int[] syncBatchIncrement(Date time) { log.info("开始增量同步批次数据..."); - List dataList = erpScmBatchMapper.selectBatchFromErp(); + List dataList = erpScmBatchMapper.selectBatchFromErp(time); if (dataList == null || dataList.isEmpty()) { log.info("批次数据为空,跳过同步"); return new int[]{0, 0, 0}; @@ -150,9 +176,9 @@ public class ErpBasicDataInformationJob implements JobHandler { return new int[]{insertCount, updateCount, skipCount}; } - public int[] syncWarehouseIncrement() { + public int[] syncWarehouseIncrement(Date time) { log.info("开始增量同步仓库数据..."); - List dataList = erpScmWarehouseMapper.selectWarehouseFromErp(); + List dataList = erpScmWarehouseMapper.selectWarehouseFromErp(time); if (dataList == null || dataList.isEmpty()) { log.info("仓库数据为空,跳过同步"); return new int[]{0, 0, 0}; diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ErpDtaSyncLogEntity.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ErpDtaSyncLogEntity.java new file mode 100644 index 0000000..81ec00d --- /dev/null +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ErpDtaSyncLogEntity.java @@ -0,0 +1,45 @@ +package com.lideeyunji.core.framework.entity; + +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 lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + * erp数据同步中间表 ERP_DATASYNCLOG + * + * @author 雷神 + * @date 2026-04-10 + */ +@TableName("ERP_DATASYNCLOG") +@Data +public class ErpDtaSyncLogEntity implements Serializable { + private static final long serialVersionUID = 1L; + + /** ID */ + @TableId(value = "ID", type = IdType.INPUT) + private String id; + + /** 创建时间 */ + @TableField(value = "CREATE_TIME") + private Date createTime; + + + /** 最后修改时间 */ + @TableField(value = "LAST_UPDATE_TIME") + private Date lastUpdateTime; + + + + /** 更改类型(1 新增,2更改) */ + @TableField(value = "CHANGE_TYPE") + private Integer changeType; + + /** 报文 */ + @TableField(value = "MESSAGE") + private String message; +} diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfMeasureUnitMapper.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfMeasureUnitMapper.java index 633119a..992d3d7 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfMeasureUnitMapper.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfMeasureUnitMapper.java @@ -16,37 +16,124 @@ import java.util.List; * @since 2026-04-11 */ @Mapper +@DS("sjzt") public interface ErpBfMeasureUnitMapper extends BaseMapper { @DS("erp") - default List selectMeasureUnitFromErp() { - return this.selectList(new LambdaQueryWrapper<>()); + default List selectMeasureUnitFromErp(Date time) { + return this.selectList(new LambdaQueryWrapper().ge(ErpBfMeasureUnit::getTimeStampLastChangedOn, time)); } /** * 同步单条计量单位数据(根据时间戳判断新增/更新/跳过) + * * @return 1:新增, 2:更新, 0:跳过 */ - @DS("sjzt") default int syncMeasureUnitByTimestamp(ErpBfMeasureUnit sourceData) { ErpBfMeasureUnit targetData = this.selectById(sourceData.getId()); + + // 目标不存在 → 新增 if (targetData == null) { - // 目标库不存在,新增 this.insert(sourceData); return 1; } - // 比较时间戳 - Date sourceTime = sourceData.getTimeStampLastChangedOn(); - Date targetTime = targetData.getTimeStampLastChangedOn(); - if (sourceTime != null && targetTime != null && !sourceTime.equals(targetTime)) { - // 时间戳不同,更新 - this.updateById(sourceData); + + // 标记是否需要更新 + boolean needUpdate = false; + + // 构建要更新的对象(只更新需要更新的字段,不覆盖有值字段) + ErpBfMeasureUnit updateData = new ErpBfMeasureUnit(); + updateData.setId(targetData.getId()); + + // ====================== 逐字段判断 ====================== + // 编码:目标为null 或 不同 → 更新 + if (shouldUpdateField(sourceData.getCode(), targetData.getCode())) { + updateData.setCode(sourceData.getCode()); + needUpdate = true; + } + // 名称 + if (shouldUpdateField(sourceData.getName(), targetData.getName())) { + updateData.setName(sourceData.getName()); + needUpdate = true; + } + // 精度 + if (shouldUpdateField(sourceData.getAccuracy(), targetData.getAccuracy())) { + updateData.setAccuracy(sourceData.getAccuracy()); + needUpdate = true; + } + // 创建人 + if (shouldUpdateField(sourceData.getTimeStampCreatedBy(), targetData.getTimeStampCreatedBy())) { + updateData.setTimeStampCreatedBy(sourceData.getTimeStampCreatedBy()); + needUpdate = true; + } + // 创建时间 + if (shouldUpdateField(sourceData.getTimeStampCreatedOn(), targetData.getTimeStampCreatedOn())) { + updateData.setTimeStampCreatedOn(sourceData.getTimeStampCreatedOn()); + needUpdate = true; + } + // 最后修改人 + if (shouldUpdateField(sourceData.getTimeStampLastChangedBy(), targetData.getTimeStampLastChangedBy())) { + updateData.setTimeStampLastChangedBy(sourceData.getTimeStampLastChangedBy()); + needUpdate = true; + } + // 最后修改时间 + if (shouldUpdateField(sourceData.getTimeStampLastChangedOn(), targetData.getTimeStampLastChangedOn())) { + updateData.setTimeStampLastChangedOn(sourceData.getTimeStampLastChangedOn()); + needUpdate = true; + } + // 是否可用 + if (shouldUpdateField(sourceData.getStateIsEnabled(), targetData.getStateIsEnabled())) { + updateData.setStateIsEnabled(sourceData.getStateIsEnabled()); + needUpdate = true; + } + // 停用时间 + if (shouldUpdateField(sourceData.getStateDisableTime(), targetData.getStateDisableTime())) { + updateData.setStateDisableTime(sourceData.getStateDisableTime()); + needUpdate = true; + } + // 异步删除状态 + if (shouldUpdateField(sourceData.getStateAsyncDeleteStatus(), targetData.getStateAsyncDeleteStatus())) { + updateData.setStateAsyncDeleteStatus(sourceData.getStateAsyncDeleteStatus()); + needUpdate = true; + } + // 单位类别 + if (shouldUpdateField(sourceData.getUnitType(), targetData.getUnitType())) { + updateData.setUnitType(sourceData.getUnitType()); + needUpdate = true; + } + // 排序号 + if (shouldUpdateField(sourceData.getSortOrder(), targetData.getSortOrder())) { + updateData.setSortOrder(sourceData.getSortOrder()); + needUpdate = true; + } + + // 2. 需要更新 → 只更新变化的字段 + if (needUpdate) { + this.updateById(updateData); return 2; } - // 时间戳相同,跳过 + + // 3. 无需更新 → 跳过 return 0; } + + /** + * 核心判断规则: + * 1. 目标字段 == null → 需要更新 + * 2. 目标字段 != null,但 和源数据值不同 → 需要更新 + * 3. 目标字段有值 + 和源相同 → 不更新 + */ + public static boolean shouldUpdateField(Object source, Object target) { + //目标 + if (target == null) + return true; + //源 + if (source == null) + return false; + return !target.equals(source); + } + } \ No newline at end of file diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfPartnerMapper.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfPartnerMapper.java index a2893ba..a2c2b1a 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfPartnerMapper.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpBfPartnerMapper.java @@ -3,6 +3,7 @@ package com.lideeyunji.core.framework.mapper.erp; import com.baomidou.dynamic.datasource.annotation.DS; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.lideeyunji.core.framework.entity.ErpBfMeasureUnit; import com.lideeyunji.core.framework.entity.ErpBfPartner; import org.apache.ibatis.annotations.Mapper; @@ -16,37 +17,435 @@ import java.util.List; * @since 2026-04-11 */ @Mapper +@DS("sjzt") public interface ErpBfPartnerMapper extends BaseMapper { // ==================== 往来单位 ==================== @DS("erp") - default List selectPartnerFromErp() { - return this.selectList(new LambdaQueryWrapper<>()); + default List selectPartnerFromErp(Date time) { + return this.selectList(new LambdaQueryWrapper().ge(ErpBfPartner::getTimeStampLastChangedOn, time)); } /** * 同步单条往来单位数据(根据时间戳判断新增/更新/跳过) + * * @return 1:新增, 2:更新, 0:跳过 */ - @DS("sjzt") default int syncPartnerByTimestamp(ErpBfPartner sourceData) { ErpBfPartner targetData = this.selectById(sourceData.getId()); + // 1. 目标不存在 → 新增 if (targetData == null) { - // 目标库不存在,新增 this.insert(sourceData); return 1; } - // 比较时间戳 - Date sourceTime = sourceData.getTimeStampLastChangedOn(); - Date targetTime = targetData.getTimeStampLastChangedOn(); - if (sourceTime != null && targetTime != null && !sourceTime.equals(targetTime)) { - // 时间戳不同,更新 - this.updateById(sourceData); + + boolean needUpdate = false; + ErpBfPartner updateData = new ErpBfPartner(); + updateData.setId(targetData.getId()); + + // ====================== 逐字段判断 ====================== + if (shouldUpdateField(sourceData.getCode(), targetData.getCode())) { + updateData.setCode(sourceData.getCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getName(), targetData.getName())) { + updateData.setName(sourceData.getName()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRemark(), targetData.getRemark())) { + updateData.setRemark(sourceData.getRemark()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStateIsEnabled(), targetData.getStateIsEnabled())) { + updateData.setStateIsEnabled(sourceData.getStateIsEnabled()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStateDisableTime(), targetData.getStateDisableTime())) { + updateData.setStateDisableTime(sourceData.getStateDisableTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStateAsyncDeleteStatus(), targetData.getStateAsyncDeleteStatus())) { + updateData.setStateAsyncDeleteStatus(sourceData.getStateAsyncDeleteStatus()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAttachment(), targetData.getAttachment())) { + updateData.setAttachment(sourceData.getAttachment()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRepresentative(), targetData.getRepresentative())) { + updateData.setRepresentative(sourceData.getRepresentative()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIndustry(), targetData.getIndustry())) { + updateData.setIndustry(sourceData.getIndustry()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getArea(), targetData.getArea())) { + updateData.setArea(sourceData.getArea()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOrganizationCode(), targetData.getOrganizationCode())) { + updateData.setOrganizationCode(sourceData.getOrganizationCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCountryOrRegion(), targetData.getCountryOrRegion())) { + updateData.setCountryOrRegion(sourceData.getCountryOrRegion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOfRegion(), targetData.getOfRegion())) { + updateData.setOfRegion(sourceData.getOfRegion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getType(), targetData.getType())) { + updateData.setType(sourceData.getType()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampCreatedBy(), targetData.getTimeStampCreatedBy())) { + updateData.setTimeStampCreatedBy(sourceData.getTimeStampCreatedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampCreatedOn(), targetData.getTimeStampCreatedOn())) { + updateData.setTimeStampCreatedOn(sourceData.getTimeStampCreatedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampLastChangedBy(), targetData.getTimeStampLastChangedBy())) { + updateData.setTimeStampLastChangedBy(sourceData.getTimeStampLastChangedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampLastChangedOn(), targetData.getTimeStampLastChangedOn())) { + updateData.setTimeStampLastChangedOn(sourceData.getTimeStampLastChangedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefaultCurrencyId(), targetData.getDefaultCurrencyId())) { + updateData.setDefaultCurrencyId(sourceData.getDefaultCurrencyId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBillStatus(), targetData.getBillStatus())) { + updateData.setBillStatus(sourceData.getBillStatus()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInstanceId(), targetData.getInstanceId())) { + updateData.setInstanceId(sourceData.getInstanceId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSuperiorPartner(), targetData.getSuperiorPartner())) { + updateData.setSuperiorPartner(sourceData.getSuperiorPartner()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRegisteredCapital(), targetData.getRegisteredCapital())) { + updateData.setRegisteredCapital(sourceData.getRegisteredCapital()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCompanyWebsite(), targetData.getCompanyWebsite())) { + updateData.setCompanyWebsite(sourceData.getCompanyWebsite()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getEmail(), targetData.getEmail())) { + updateData.setEmail(sourceData.getEmail()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefaultAddress(), targetData.getDefaultAddress())) { + updateData.setDefaultAddress(sourceData.getDefaultAddress()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefaultContact(), targetData.getDefaultContact())) { + updateData.setDefaultContact(sourceData.getDefaultContact()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCompanyOrPerson(), targetData.getCompanyOrPerson())) { + updateData.setCompanyOrPerson(sourceData.getCompanyOrPerson()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsCustomer(), targetData.getIsCustomer())) { + updateData.setIsCustomer(sourceData.getIsCustomer()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsVender(), targetData.getIsVender())) { + updateData.setIsVender(sourceData.getIsVender()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsOther(), targetData.getIsOther())) { + updateData.setIsOther(sourceData.getIsOther()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInteriorCompany(), targetData.getInteriorCompany())) { + updateData.setInteriorCompany(sourceData.getInteriorCompany()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDistribution(), targetData.getDistribution())) { + updateData.setDistribution(sourceData.getDistribution()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInteriorAccountingOrg(), targetData.getInteriorAccountingOrg())) { + updateData.setInteriorAccountingOrg(sourceData.getInteriorAccountingOrg()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInteriorAdminOrg(), targetData.getInteriorAdminOrg())) { + updateData.setInteriorAdminOrg(sourceData.getInteriorAdminOrg()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTaxpayer(), targetData.getTaxpayer())) { + updateData.setTaxpayer(sourceData.getTaxpayer()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefaultCompany(), targetData.getDefaultCompany())) { + updateData.setDefaultCompany(sourceData.getDefaultCompany()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTaxIdNumber(), targetData.getTaxIdNumber())) { + updateData.setTaxIdNumber(sourceData.getTaxIdNumber()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRegisteredAddress(), targetData.getRegisteredAddress())) { + updateData.setRegisteredAddress(sourceData.getRegisteredAddress()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getContactInfo(), targetData.getContactInfo())) { + updateData.setContactInfo(sourceData.getContactInfo()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBank(), targetData.getBank())) { + updateData.setBank(sourceData.getBank()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAccount(), targetData.getAccount())) { + updateData.setAccount(sourceData.getAccount()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTypeOfTaxpayer(), targetData.getTypeOfTaxpayer())) { + updateData.setTypeOfTaxpayer(sourceData.getTypeOfTaxpayer()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTaxpayerEmail(), targetData.getTaxpayerEmail())) { + updateData.setTaxpayerEmail(sourceData.getTaxpayerEmail()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTelForInvoice(), targetData.getTelForInvoice())) { + updateData.setTelForInvoice(sourceData.getTelForInvoice()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTypeOfSuppier(), targetData.getTypeOfSuppier())) { + updateData.setTypeOfSuppier(sourceData.getTypeOfSuppier()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRegionOfSuppier(), targetData.getRegionOfSuppier())) { + updateData.setRegionOfSuppier(sourceData.getRegionOfSuppier()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTypeOfClient(), targetData.getTypeOfClient())) { + updateData.setTypeOfClient(sourceData.getTypeOfClient()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRegionOfClient(), targetData.getRegionOfClient())) { + updateData.setRegionOfClient(sourceData.getRegionOfClient()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getLineOfCredit(), targetData.getLineOfCredit())) { + updateData.setLineOfCredit(sourceData.getLineOfCredit()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAccountPeriod(), targetData.getAccountPeriod())) { + updateData.setAccountPeriod(sourceData.getAccountPeriod()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBankForInvoice(), targetData.getBankForInvoice())) { + updateData.setBankForInvoice(sourceData.getBankForInvoice()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getShortName(), targetData.getShortName())) { + updateData.setShortName(sourceData.getShortName()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSummary(), targetData.getSummary())) { + updateData.setSummary(sourceData.getSummary()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOwnerOrg(), targetData.getOwnerOrg())) { + updateData.setOwnerOrg(sourceData.getOwnerOrg()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOwnerDomain(), targetData.getOwnerDomain())) { + updateData.setOwnerDomain(sourceData.getOwnerDomain()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSecLevel(), targetData.getSecLevel())) { + updateData.setSecLevel(sourceData.getSecLevel()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSecLevelId(), targetData.getSecLevelId())) { + updateData.setSecLevelId(sourceData.getSecLevelId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDomainType(), targetData.getDomainType())) { + updateData.setDomainType(sourceData.getDomainType()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReferId1(), targetData.getReferId1())) { + updateData.setReferId1(sourceData.getReferId1()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReferId2(), targetData.getReferId2())) { + updateData.setReferId2(sourceData.getReferId2()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReferId3(), targetData.getReferId3())) { + updateData.setReferId3(sourceData.getReferId3()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReferId4(), targetData.getReferId4())) { + updateData.setReferId4(sourceData.getReferId4()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReferId5(), targetData.getReferId5())) { + updateData.setReferId5(sourceData.getReferId5()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPlainText1(), targetData.getPlainText1())) { + updateData.setPlainText1(sourceData.getPlainText1()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPlainText2(), targetData.getPlainText2())) { + updateData.setPlainText2(sourceData.getPlainText2()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPlainText3(), targetData.getPlainText3())) { + updateData.setPlainText3(sourceData.getPlainText3()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPlainText4(), targetData.getPlainText4())) { + updateData.setPlainText4(sourceData.getPlainText4()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPlainText5(), targetData.getPlainText5())) { + updateData.setPlainText5(sourceData.getPlainText5()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDec1(), targetData.getDec1())) { + updateData.setDec1(sourceData.getDec1()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDec2(), targetData.getDec2())) { + updateData.setDec2(sourceData.getDec2()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDec3(), targetData.getDec3())) { + updateData.setDec3(sourceData.getDec3()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDec4(), targetData.getDec4())) { + updateData.setDec4(sourceData.getDec4()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDec5(), targetData.getDec5())) { + updateData.setDec5(sourceData.getDec5()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getUnitNature(), targetData.getUnitNature())) { + updateData.setUnitNature(sourceData.getUnitNature()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getNRemark(), targetData.getNRemark())) { + updateData.setNRemark(sourceData.getNRemark()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getNSummary(), targetData.getNSummary())) { + updateData.setNSummary(sourceData.getNSummary()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getNRegisteredAddress(), targetData.getNRegisteredAddress())) { + updateData.setNRegisteredAddress(sourceData.getNRegisteredAddress()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getEnableESign(), targetData.getEnableESign())) { + updateData.setEnableESign(sourceData.getEnableESign()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRegisteredTime(), targetData.getRegisteredTime())) { + updateData.setRegisteredTime(sourceData.getRegisteredTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPaidInCapital(), targetData.getPaidInCapital())) { + updateData.setPaidInCapital(sourceData.getPaidInCapital()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCreditRating(), targetData.getCreditRating())) { + updateData.setCreditRating(sourceData.getCreditRating()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getManagementState(), targetData.getManagementState())) { + updateData.setManagementState(sourceData.getManagementState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getActualController(), targetData.getActualController())) { + updateData.setActualController(sourceData.getActualController()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMnemocode(), targetData.getMnemocode())) { + updateData.setMnemocode(sourceData.getMnemocode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBillType(), targetData.getBillType())) { + updateData.setBillType(sourceData.getBillType()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getActualControllerPartner(), targetData.getActualControllerPartner())) { + updateData.setActualControllerPartner(sourceData.getActualControllerPartner()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIeOwnerDomains(), targetData.getIeOwnerDomains())) { + updateData.setIeOwnerDomains(sourceData.getIeOwnerDomains()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBusinessScope(), targetData.getBusinessScope())) { + updateData.setBusinessScope(sourceData.getBusinessScope()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPublicRatingLevel(), targetData.getPublicRatingLevel())) { + updateData.setPublicRatingLevel(sourceData.getPublicRatingLevel()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPublicRatingScore(), targetData.getPublicRatingScore())) { + updateData.setPublicRatingScore(sourceData.getPublicRatingScore()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInPublicBlacklist(), targetData.getInPublicBlacklist())) { + updateData.setInPublicBlacklist(sourceData.getInPublicBlacklist()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOfficePhone(), targetData.getOfficePhone())) { + updateData.setOfficePhone(sourceData.getOfficePhone()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getEnterpriseScale(), targetData.getEnterpriseScale())) { + updateData.setEnterpriseScale(sourceData.getEnterpriseScale()); + needUpdate = true; + } + + // 2. 需要更新 → 只更新变化字段 + if (needUpdate) { + this.updateById(updateData); return 2; } - // 时间戳相同,跳过 + + // 3. 无需更新 return 0; } + + /** + * 核心判断规则: + * 1. 目标字段 == null → 需要更新 + * 2. 目标字段 != null,但 和源数据值不同 → 需要更新 + * 3. 目标字段有值 + 和源相同 → 不更新 + */ + public static boolean shouldUpdateField(Object source, Object target) { + //目标 + if (target == null) + return true; + //源 + if (source == null) + return false; + return !target.equals(source); + } } \ No newline at end of file diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpDataSyncLogMapper.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpDataSyncLogMapper.java new file mode 100644 index 0000000..10f5efd --- /dev/null +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpDataSyncLogMapper.java @@ -0,0 +1,18 @@ +package com.lideeyunji.core.framework.mapper.erp; + +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.lideeyunji.core.framework.entity.ErpDtaSyncLogEntity; +import org.apache.ibatis.annotations.Param; + +import java.util.Date; +import java.util.List; + +public interface ErpDataSyncLogMapper extends BaseMapper { + @DS(value = "#dataSourceType") + default List getList(@Param("dataSourceType") String dataSourceType){ + return this.selectList(new QueryWrapper<>()); + } +} + diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBaseSnMapper.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBaseSnMapper.java index 7c9eda3..ee81a50 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBaseSnMapper.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBaseSnMapper.java @@ -3,6 +3,7 @@ package com.lideeyunji.core.framework.mapper.erp; import com.baomidou.dynamic.datasource.annotation.DS; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.lideeyunji.core.framework.entity.ErpBfPartner; import com.lideeyunji.core.framework.entity.ErpScmBaseSn; import org.apache.ibatis.annotations.Mapper; @@ -16,20 +17,20 @@ import java.util.List; * @since 2026-04-11 */ @Mapper +@DS("sjzt") public interface ErpScmBaseSnMapper extends BaseMapper { - @DS("erp") - default List selectBaseSnFromErp() { - return this.selectList(new LambdaQueryWrapper<>()); + default List selectBaseSnFromErp(Date time) { + return this.selectList(new LambdaQueryWrapper().ge(ErpScmBaseSn::getTimeStampLastChangedOn, time)); } /** * 同步单条批次号数据(根据时间戳判断新增/更新/跳过) + * * @return 1:新增, 2:更新, 0:跳过 */ - @DS("sjzt") default int syncBaseSnByTimestamp(ErpScmBaseSn sourceData) { ErpScmBaseSn targetData = this.selectById(sourceData.getId()); if (targetData == null) { @@ -37,15 +38,478 @@ public interface ErpScmBaseSnMapper extends BaseMapper { this.insert(sourceData); return 1; } - // 比较时间戳 - Date sourceTime = sourceData.getTimeStampLastChangedOn(); - Date targetTime = targetData.getTimeStampLastChangedOn(); - if (sourceTime != null && targetTime != null && !sourceTime.equals(targetTime)) { - // 时间戳不同,更新 - this.updateById(sourceData); + boolean needUpdate = false; + ErpScmBaseSn updateData = new ErpScmBaseSn(); + updateData.setId(targetData.getId()); + // ====================== 逐字段判断 ====================== + if (shouldUpdateField(sourceData.getSn(), targetData.getSn())) { + updateData.setSn(sourceData.getSn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDataYear(), targetData.getDataYear())) { + updateData.setDataYear(sourceData.getDataYear()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDataMonth(), targetData.getDataMonth())) { + updateData.setDataMonth(sourceData.getDataMonth()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getImOrgId(), targetData.getImOrgId())) { + updateData.setImOrgId(sourceData.getImOrgId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMaterialId(), targetData.getMaterialId())) { + updateData.setMaterialId(sourceData.getMaterialId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMCode(), targetData.getMCode())) { + updateData.setMCode(sourceData.getMCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMName(), targetData.getMName())) { + updateData.setMName(sourceData.getMName()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMSpecs(), targetData.getMSpecs())) { + updateData.setMSpecs(sourceData.getMSpecs()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMModel(), targetData.getMModel())) { + updateData.setMModel(sourceData.getMModel()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMNote(), targetData.getMNote())) { + updateData.setMNote(sourceData.getMNote()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSecQty(), targetData.getSecQty())) { + updateData.setSecQty(sourceData.getSecQty()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSecUnitId(), targetData.getSecUnitId())) { + updateData.setSecUnitId(sourceData.getSecUnitId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSecUnit(), targetData.getSecUnit())) { + updateData.setSecUnit(sourceData.getSecUnit()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getConvRule(), targetData.getConvRule())) { + updateData.setConvRule(sourceData.getConvRule()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getConvRatio(), targetData.getConvRatio())) { + updateData.setConvRatio(sourceData.getConvRatio()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSecPrecision(), targetData.getSecPrecision())) { + updateData.setSecPrecision(sourceData.getSecPrecision()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRemarks(), targetData.getRemarks())) { + updateData.setRemarks(sourceData.getRemarks()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getExContentId(), targetData.getExContentId())) { + updateData.setExContentId(sourceData.getExContentId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getExContent(), targetData.getExContent())) { + updateData.setExContent(sourceData.getExContent()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMExContentId(), targetData.getMExContentId())) { + updateData.setMExContentId(sourceData.getMExContentId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMExContent(), targetData.getMExContent())) { + updateData.setMExContent(sourceData.getMExContent()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMFeatureId(), targetData.getMFeatureId())) { + updateData.setMFeatureId(sourceData.getMFeatureId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchId(), targetData.getBatchId())) { + updateData.setBatchId(sourceData.getBatchId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchCode(), targetData.getBatchCode())) { + updateData.setBatchCode(sourceData.getBatchCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getQualityState(), targetData.getQualityState())) { + updateData.setQualityState(sourceData.getQualityState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getQualityLevel(), targetData.getQualityLevel())) { + updateData.setQualityLevel(sourceData.getQualityLevel()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getQualityTime(), targetData.getQualityTime())) { + updateData.setQualityTime(sourceData.getQualityTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchStockState(), targetData.getBatchStockState())) { + updateData.setBatchStockState(sourceData.getBatchStockState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReleaseState(), targetData.getReleaseState())) { + updateData.setReleaseState(sourceData.getReleaseState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getVenderId(), targetData.getVenderId())) { + updateData.setVenderId(sourceData.getVenderId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getFactoryId(), targetData.getFactoryId())) { + updateData.setFactoryId(sourceData.getFactoryId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOriBatchCode(), targetData.getOriBatchCode())) { + updateData.setOriBatchCode(sourceData.getOriBatchCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRecDate(), targetData.getRecDate())) { + updateData.setRecDate(sourceData.getRecDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProductDate(), targetData.getProductDate())) { + updateData.setProductDate(sourceData.getProductDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getEfficientDate(), targetData.getEfficientDate())) { + updateData.setEfficientDate(sourceData.getEfficientDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDisableDate(), targetData.getDisableDate())) { + updateData.setDisableDate(sourceData.getDisableDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWh(), targetData.getWh())) { + updateData.setWh(sourceData.getWh()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMFeature(), targetData.getMFeature())) { + updateData.setMFeature(sourceData.getMFeature()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBin(), targetData.getBin())) { + updateData.setBin(sourceData.getBin()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWhId(), targetData.getWhId())) { + updateData.setWhId(sourceData.getWhId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBinId(), targetData.getBinId())) { + updateData.setBinId(sourceData.getBinId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPileCode(), targetData.getPileCode())) { + updateData.setPileCode(sourceData.getPileCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMVersion(), targetData.getMVersion())) { + updateData.setMVersion(sourceData.getMVersion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStoreState(), targetData.getStoreState())) { + updateData.setStoreState(sourceData.getStoreState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsStop(), targetData.getIsStop())) { + updateData.setIsStop(sourceData.getIsStop()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopTime(), targetData.getStopTime())) { + updateData.setStopTime(sourceData.getStopTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopUserId(), targetData.getStopUserId())) { + updateData.setStopUserId(sourceData.getStopUserId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopUser(), targetData.getStopUser())) { + updateData.setStopUser(sourceData.getStopUser()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsArchive(), targetData.getIsArchive())) { + updateData.setIsArchive(sourceData.getIsArchive()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsPrinted(), targetData.getIsPrinted())) { + updateData.setIsPrinted(sourceData.getIsPrinted()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPrintingTimes(), targetData.getPrintingTimes())) { + updateData.setPrintingTimes(sourceData.getPrintingTimes()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAttachmentCnts(), targetData.getAttachmentCnts())) { + updateData.setAttachmentCnts(sourceData.getAttachmentCnts()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getSnRuleId(), targetData.getSnRuleId())) { + updateData.setSnRuleId(sourceData.getSnRuleId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC01(), targetData.getC01())) { + updateData.setC01(sourceData.getC01()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC02(), targetData.getC02())) { + updateData.setC02(sourceData.getC02()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC03(), targetData.getC03())) { + updateData.setC03(sourceData.getC03()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC04(), targetData.getC04())) { + updateData.setC04(sourceData.getC04()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC05(), targetData.getC05())) { + updateData.setC05(sourceData.getC05()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC06(), targetData.getC06())) { + updateData.setC06(sourceData.getC06()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC07(), targetData.getC07())) { + updateData.setC07(sourceData.getC07()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC08(), targetData.getC08())) { + updateData.setC08(sourceData.getC08()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC09(), targetData.getC09())) { + updateData.setC09(sourceData.getC09()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC10(), targetData.getC10())) { + updateData.setC10(sourceData.getC10()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC11(), targetData.getC11())) { + updateData.setC11(sourceData.getC11()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC12(), targetData.getC12())) { + updateData.setC12(sourceData.getC12()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC13(), targetData.getC13())) { + updateData.setC13(sourceData.getC13()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC14(), targetData.getC14())) { + updateData.setC14(sourceData.getC14()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC15(), targetData.getC15())) { + updateData.setC15(sourceData.getC15()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC16(), targetData.getC16())) { + updateData.setC16(sourceData.getC16()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC17(), targetData.getC17())) { + updateData.setC17(sourceData.getC17()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC18(), targetData.getC18())) { + updateData.setC18(sourceData.getC18()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC19(), targetData.getC19())) { + updateData.setC19(sourceData.getC19()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC20(), targetData.getC20())) { + updateData.setC20(sourceData.getC20()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN01(), targetData.getN01())) { + updateData.setN01(sourceData.getN01()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN02(), targetData.getN02())) { + updateData.setN02(sourceData.getN02()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN03(), targetData.getN03())) { + updateData.setN03(sourceData.getN03()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN04(), targetData.getN04())) { + updateData.setN04(sourceData.getN04()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN05(), targetData.getN05())) { + updateData.setN05(sourceData.getN05()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN06(), targetData.getN06())) { + updateData.setN06(sourceData.getN06()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN07(), targetData.getN07())) { + updateData.setN07(sourceData.getN07()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN08(), targetData.getN08())) { + updateData.setN08(sourceData.getN08()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN09(), targetData.getN09())) { + updateData.setN09(sourceData.getN09()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN10(), targetData.getN10())) { + updateData.setN10(sourceData.getN10()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampCreatedBy(), targetData.getTimeStampCreatedBy())) { + updateData.setTimeStampCreatedBy(sourceData.getTimeStampCreatedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampCreatedOn(), targetData.getTimeStampCreatedOn())) { + updateData.setTimeStampCreatedOn(sourceData.getTimeStampCreatedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampLastChangedBy(), targetData.getTimeStampLastChangedBy())) { + updateData.setTimeStampLastChangedBy(sourceData.getTimeStampLastChangedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimeStampLastChangedOn(), targetData.getTimeStampLastChangedOn())) { + updateData.setTimeStampLastChangedOn(sourceData.getTimeStampLastChangedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getVersion(), targetData.getVersion())) { + updateData.setVersion(sourceData.getVersion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStoragePeriod(), targetData.getStoragePeriod())) { + updateData.setStoragePeriod(sourceData.getStoragePeriod()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAssayDate(), targetData.getAssayDate())) { + updateData.setAssayDate(sourceData.getAssayDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCheckDate(), targetData.getCheckDate())) { + updateData.setCheckDate(sourceData.getCheckDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRecheckDate(), targetData.getRecheckDate())) { + updateData.setRecheckDate(sourceData.getRecheckDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPreOilSealDate(), targetData.getPreOilSealDate())) { + updateData.setPreOilSealDate(sourceData.getPreOilSealDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOilSealDate(), targetData.getOilSealDate())) { + updateData.setOilSealDate(sourceData.getOilSealDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAssayNum(), targetData.getAssayNum())) { + updateData.setAssayNum(sourceData.getAssayNum()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRecheckNum(), targetData.getRecheckNum())) { + updateData.setRecheckNum(sourceData.getRecheckNum()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOccId(), targetData.getOccId())) { + updateData.setOccId(sourceData.getOccId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOccType(), targetData.getOccType())) { + updateData.setOccType(sourceData.getOccType()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOccState(), targetData.getOccState())) { + updateData.setOccState(sourceData.getOccState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMDrawingNo(), targetData.getMDrawingNo())) { + updateData.setMDrawingNo(sourceData.getMDrawingNo()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProjectId(), targetData.getProjectId())) { + updateData.setProjectId(sourceData.getProjectId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProjectName(), targetData.getProjectName())) { + updateData.setProjectName(sourceData.getProjectName()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProjectCode(), targetData.getProjectCode())) { + updateData.setProjectCode(sourceData.getProjectCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGiBillId(), targetData.getGiBillId())) { + updateData.setGiBillId(sourceData.getGiBillId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGiBillCode(), targetData.getGiBillCode())) { + updateData.setGiBillCode(sourceData.getGiBillCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGiBillItemId(), targetData.getGiBillItemId())) { + updateData.setGiBillItemId(sourceData.getGiBillItemId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGiBillItemNo(), targetData.getGiBillItemNo())) { + updateData.setGiBillItemNo(sourceData.getGiBillItemNo()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGrBillId(), targetData.getGrBillId())) { + updateData.setGrBillId(sourceData.getGrBillId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGrBillCode(), targetData.getGrBillCode())) { + updateData.setGrBillCode(sourceData.getGrBillCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGrBillItemId(), targetData.getGrBillItemId())) { + updateData.setGrBillItemId(sourceData.getGrBillItemId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getGrBillItemNo(), targetData.getGrBillItemNo())) { + updateData.setGrBillItemNo(sourceData.getGrBillItemNo()); + needUpdate = true; + } + + // 2. 需要更新 → 只更新变化字段 + if (needUpdate) { + this.updateById(updateData); return 2; } - // 时间戳相同,跳过 + + // 3. 无需更新 return 0; } + + /** + * 核心判断规则: + * 1. 目标字段 == null → 需要更新 + * 2. 目标字段 != null,但 和源数据值不同 → 需要更新 + * 3. 目标字段有值 + 和源相同 → 不更新 + */ + public static boolean shouldUpdateField(Object source, Object target) { + //目标 + if (target == null) + return true; + //源 + if (source == null) + return false; + return !target.equals(source); + } } \ No newline at end of file diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBatchMapper.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBatchMapper.java index e4e2708..ac1cc14 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBatchMapper.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmBatchMapper.java @@ -3,6 +3,7 @@ package com.lideeyunji.core.framework.mapper.erp; import com.baomidou.dynamic.datasource.annotation.DS; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.lideeyunji.core.framework.entity.ErpScmBaseSn; import com.lideeyunji.core.framework.entity.ErpScmBatch; import org.apache.ibatis.annotations.Mapper; @@ -16,19 +17,20 @@ import java.util.List; * @since 2026-04-11 */ @Mapper +@DS("sjzt") public interface ErpScmBatchMapper extends BaseMapper { @DS("erp") - default List selectBatchFromErp() { - return this.selectList(new LambdaQueryWrapper<>()); + default List selectBatchFromErp(Date time) { + return this.selectList(new LambdaQueryWrapper().ge(ErpScmBatch::getTimestampsLastChangedOn, time)); } /** * 同步单条批次数据(根据时间戳判断新增/更新/跳过) + * * @return 1:新增, 2:更新, 0:跳过 */ - @DS("sjzt") default int syncBatchByTimestamp(ErpScmBatch sourceData) { ErpScmBatch targetData = this.selectById(sourceData.getId()); if (targetData == null) { @@ -37,14 +39,399 @@ public interface ErpScmBatchMapper extends BaseMapper { return 1; } // 比较时间戳 - Date sourceTime = sourceData.getTimestampsLastChangedOn(); - Date targetTime = targetData.getTimestampsLastChangedOn(); - if (sourceTime != null && targetTime != null && !sourceTime.equals(targetTime)) { - // 时间戳不同,更新 - this.updateById(sourceData); + boolean needUpdate = false; + ErpScmBatch updateData = new ErpScmBatch(); + updateData.setId(targetData.getId()); + + // ====================== 逐字段判断 ====================== + if (shouldUpdateField(sourceData.getVersion(), targetData.getVersion())) { + updateData.setVersion(sourceData.getVersion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBizOrgId(), targetData.getBizOrgId())) { + updateData.setBizOrgId(sourceData.getBizOrgId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getMaterialId(), targetData.getMaterialId())) { + updateData.setMaterialId(sourceData.getMaterialId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchCode(), targetData.getBatchCode())) { + updateData.setBatchCode(sourceData.getBatchCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getQualityState(), targetData.getQualityState())) { + updateData.setQualityState(sourceData.getQualityState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getQualityLevel(), targetData.getQualityLevel())) { + updateData.setQualityLevel(sourceData.getQualityLevel()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getQualityTime(), targetData.getQualityTime())) { + updateData.setQualityTime(sourceData.getQualityTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchStockState(), targetData.getBatchStockState())) { + updateData.setBatchStockState(sourceData.getBatchStockState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReleaseState(), targetData.getReleaseState())) { + updateData.setReleaseState(sourceData.getReleaseState()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getVenderId(), targetData.getVenderId())) { + updateData.setVenderId(sourceData.getVenderId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getFactoryId(), targetData.getFactoryId())) { + updateData.setFactoryId(sourceData.getFactoryId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOriBatchCode(), targetData.getOriBatchCode())) { + updateData.setOriBatchCode(sourceData.getOriBatchCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRecDate(), targetData.getRecDate())) { + updateData.setRecDate(sourceData.getRecDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProductDate(), targetData.getProductDate())) { + updateData.setProductDate(sourceData.getProductDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getEfficientDate(), targetData.getEfficientDate())) { + updateData.setEfficientDate(sourceData.getEfficientDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDisableDate(), targetData.getDisableDate())) { + updateData.setDisableDate(sourceData.getDisableDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInvUnitId(), targetData.getInvUnitId())) { + updateData.setInvUnitId(sourceData.getInvUnitId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchUnitId(), targetData.getBatchUnitId())) { + updateData.setBatchUnitId(sourceData.getBatchUnitId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getInvUnitRate(), targetData.getInvUnitRate())) { + updateData.setInvUnitRate(sourceData.getInvUnitRate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchUnitRate(), targetData.getBatchUnitRate())) { + updateData.setBatchUnitRate(sourceData.getBatchUnitRate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getExContentId(), targetData.getExContentId())) { + updateData.setExContentId(sourceData.getExContentId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getExContent(), targetData.getExContent())) { + updateData.setExContent(sourceData.getExContent()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getNote(), targetData.getNote())) { + updateData.setNote(sourceData.getNote()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getContractId(), targetData.getContractId())) { + updateData.setContractId(sourceData.getContractId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getContractCode(), targetData.getContractCode())) { + updateData.setContractCode(sourceData.getContractCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPoId(), targetData.getPoId())) { + updateData.setPoId(sourceData.getPoId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPoCode(), targetData.getPoCode())) { + updateData.setPoCode(sourceData.getPoCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsStop(), targetData.getIsStop())) { + updateData.setIsStop(sourceData.getIsStop()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopTime(), targetData.getStopTime())) { + updateData.setStopTime(sourceData.getStopTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopUserId(), targetData.getStopUserId())) { + updateData.setStopUserId(sourceData.getStopUserId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopUser(), targetData.getStopUser())) { + updateData.setStopUser(sourceData.getStopUser()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsArchive(), targetData.getIsArchive())) { + updateData.setIsArchive(sourceData.getIsArchive()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchRuleId(), targetData.getBatchRuleId())) { + updateData.setBatchRuleId(sourceData.getBatchRuleId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsPrinted(), targetData.getIsPrinted())) { + updateData.setIsPrinted(sourceData.getIsPrinted()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPrintingTimes(), targetData.getPrintingTimes())) { + updateData.setPrintingTimes(sourceData.getPrintingTimes()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBatchPrice(), targetData.getBatchPrice())) { + updateData.setBatchPrice(sourceData.getBatchPrice()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAssAttribute(), targetData.getAssAttribute())) { + updateData.setAssAttribute(sourceData.getAssAttribute()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getEffectiveTimes(), targetData.getEffectiveTimes())) { + updateData.setEffectiveTimes(sourceData.getEffectiveTimes()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getValidDate(), targetData.getValidDate())) { + updateData.setValidDate(sourceData.getValidDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAttachmentCnts(), targetData.getAttachmentCnts())) { + updateData.setAttachmentCnts(sourceData.getAttachmentCnts()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProject(), targetData.getProject())) { + updateData.setProject(sourceData.getProject()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWarehouse(), targetData.getWarehouse())) { + updateData.setWarehouse(sourceData.getWarehouse()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWbs(), targetData.getWbs())) { + updateData.setWbs(sourceData.getWbs()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWbsCode(), targetData.getWbsCode())) { + updateData.setWbsCode(sourceData.getWbsCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWarehouseCode(), targetData.getWarehouseCode())) { + updateData.setWarehouseCode(sourceData.getWarehouseCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getProjectCode(), targetData.getProjectCode())) { + updateData.setProjectCode(sourceData.getProjectCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC01(), targetData.getC01())) { + updateData.setC01(sourceData.getC01()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC02(), targetData.getC02())) { + updateData.setC02(sourceData.getC02()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC03(), targetData.getC03())) { + updateData.setC03(sourceData.getC03()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC04(), targetData.getC04())) { + updateData.setC04(sourceData.getC04()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC05(), targetData.getC05())) { + updateData.setC05(sourceData.getC05()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC06(), targetData.getC06())) { + updateData.setC06(sourceData.getC06()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC07(), targetData.getC07())) { + updateData.setC07(sourceData.getC07()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC08(), targetData.getC08())) { + updateData.setC08(sourceData.getC08()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC09(), targetData.getC09())) { + updateData.setC09(sourceData.getC09()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC10(), targetData.getC10())) { + updateData.setC10(sourceData.getC10()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC11(), targetData.getC11())) { + updateData.setC11(sourceData.getC11()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC12(), targetData.getC12())) { + updateData.setC12(sourceData.getC12()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC13(), targetData.getC13())) { + updateData.setC13(sourceData.getC13()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC14(), targetData.getC14())) { + updateData.setC14(sourceData.getC14()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC15(), targetData.getC15())) { + updateData.setC15(sourceData.getC15()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC16(), targetData.getC16())) { + updateData.setC16(sourceData.getC16()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC17(), targetData.getC17())) { + updateData.setC17(sourceData.getC17()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC18(), targetData.getC18())) { + updateData.setC18(sourceData.getC18()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC19(), targetData.getC19())) { + updateData.setC19(sourceData.getC19()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getC20(), targetData.getC20())) { + updateData.setC20(sourceData.getC20()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN01(), targetData.getN01())) { + updateData.setN01(sourceData.getN01()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN02(), targetData.getN02())) { + updateData.setN02(sourceData.getN02()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN03(), targetData.getN03())) { + updateData.setN03(sourceData.getN03()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN04(), targetData.getN04())) { + updateData.setN04(sourceData.getN04()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN05(), targetData.getN05())) { + updateData.setN05(sourceData.getN05()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN06(), targetData.getN06())) { + updateData.setN06(sourceData.getN06()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN07(), targetData.getN07())) { + updateData.setN07(sourceData.getN07()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN08(), targetData.getN08())) { + updateData.setN08(sourceData.getN08()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN09(), targetData.getN09())) { + updateData.setN09(sourceData.getN09()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getN10(), targetData.getN10())) { + updateData.setN10(sourceData.getN10()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampsCreatedBy(), targetData.getTimestampsCreatedBy())) { + updateData.setTimestampsCreatedBy(sourceData.getTimestampsCreatedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampsCreatedOn(), targetData.getTimestampsCreatedOn())) { + updateData.setTimestampsCreatedOn(sourceData.getTimestampsCreatedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampsLastChangedBy(), targetData.getTimestampsLastChangedBy())) { + updateData.setTimestampsLastChangedBy(sourceData.getTimestampsLastChangedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampsLastChangedOn(), targetData.getTimestampsLastChangedOn())) { + updateData.setTimestampsLastChangedOn(sourceData.getTimestampsLastChangedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getReQcDate(), targetData.getReQcDate())) { + updateData.setReQcDate(sourceData.getReQcDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStoragePeriod(), targetData.getStoragePeriod())) { + updateData.setStoragePeriod(sourceData.getStoragePeriod()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAssayDate(), targetData.getAssayDate())) { + updateData.setAssayDate(sourceData.getAssayDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCheckDate(), targetData.getCheckDate())) { + updateData.setCheckDate(sourceData.getCheckDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRecheckDate(), targetData.getRecheckDate())) { + updateData.setRecheckDate(sourceData.getRecheckDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getPreOilSealDate(), targetData.getPreOilSealDate())) { + updateData.setPreOilSealDate(sourceData.getPreOilSealDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getOilSealDate(), targetData.getOilSealDate())) { + updateData.setOilSealDate(sourceData.getOilSealDate()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAssayNum(), targetData.getAssayNum())) { + updateData.setAssayNum(sourceData.getAssayNum()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRecheckNum(), targetData.getRecheckNum())) { + updateData.setRecheckNum(sourceData.getRecheckNum()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getManufacturerId(), targetData.getManufacturerId())) { + updateData.setManufacturerId(sourceData.getManufacturerId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getValidTo(), targetData.getValidTo())) { + updateData.setValidTo(sourceData.getValidTo()); + needUpdate = true; + } + + // 2. 需要更新 → 只更新变化字段 + if (needUpdate) { + this.updateById(updateData); return 2; } - // 时间戳相同,跳过 + + // 3. 无需更新 return 0; } + + /** + * 核心判断规则: + * 1. 目标字段 == null → 需要更新 + * 2. 目标字段 != null,但 和源数据值不同 → 需要更新 + * 3. 目标字段有值 + 和源相同 → 不更新 + */ + public static boolean shouldUpdateField(Object source, Object target) { + //目标 + if (target == null) + return true; + //源 + if (source == null) + return false; + return !target.equals(source); + } } \ No newline at end of file diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmWarehouseMapper.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmWarehouseMapper.java index 91c4fcd..90f7b62 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmWarehouseMapper.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/mapper/erp/ErpScmWarehouseMapper.java @@ -3,6 +3,7 @@ package com.lideeyunji.core.framework.mapper.erp; import com.baomidou.dynamic.datasource.annotation.DS; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.lideeyunji.core.framework.entity.ErpScmBatch; import com.lideeyunji.core.framework.entity.ErpScmWarehouse; import org.apache.ibatis.annotations.Mapper; @@ -16,20 +17,20 @@ import java.util.List; * @since 2026-04-11 */ @Mapper +@DS("sjzt") public interface ErpScmWarehouseMapper extends BaseMapper { - @DS("erp") - default List selectWarehouseFromErp() { - return this.selectList(new LambdaQueryWrapper<>()); + default List selectWarehouseFromErp(Date time) { + return this.selectList(new LambdaQueryWrapper().ge(ErpScmWarehouse::getTimestampLastChangedOn, time)); } /** * 同步单条仓库数据(根据时间戳判断新增/更新/跳过) + * * @return 1:新增, 2:更新, 0:跳过 */ - @DS("sjzt") default int syncWarehouseByTimestamp(ErpScmWarehouse sourceData) { ErpScmWarehouse targetData = this.selectById(sourceData.getId()); if (targetData == null) { @@ -37,16 +38,152 @@ public interface ErpScmWarehouseMapper extends BaseMapper { this.insert(sourceData); return 1; } - // 比较时间戳 - Date sourceTime = sourceData.getTimestampLastChangedOn(); - Date targetTime = targetData.getTimestampLastChangedOn(); - if (sourceTime != null && targetTime != null && !sourceTime.equals(targetTime)) { - // 时间戳不同,更新 - this.updateById(sourceData); + boolean needUpdate = false; + ErpScmWarehouse updateData = new ErpScmWarehouse(); + updateData.setId(targetData.getId()); + + // ====================== 逐字段判断 ====================== + if (shouldUpdateField(sourceData.getWarehouseCode(), targetData.getWarehouseCode())) { + updateData.setWarehouseCode(sourceData.getWarehouseCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getWarehouseName(), targetData.getWarehouseName())) { + updateData.setWarehouseName(sourceData.getWarehouseName()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getAddress(), targetData.getAddress())) { + updateData.setAddress(sourceData.getAddress()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsMgrBin(), targetData.getIsMgrBin())) { + updateData.setIsMgrBin(sourceData.getIsMgrBin()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getVersion(), targetData.getVersion())) { + updateData.setVersion(sourceData.getVersion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getLongitude(), targetData.getLongitude())) { + updateData.setLongitude(sourceData.getLongitude()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getLatitude(), targetData.getLatitude())) { + updateData.setLatitude(sourceData.getLatitude()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampCreatedBy(), targetData.getTimestampCreatedBy())) { + updateData.setTimestampCreatedBy(sourceData.getTimestampCreatedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampCreatedOn(), targetData.getTimestampCreatedOn())) { + updateData.setTimestampCreatedOn(sourceData.getTimestampCreatedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampLastChangedBy(), targetData.getTimestampLastChangedBy())) { + updateData.setTimestampLastChangedBy(sourceData.getTimestampLastChangedBy()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getTimestampLastChangedOn(), targetData.getTimestampLastChangedOn())) { + updateData.setTimestampLastChangedOn(sourceData.getTimestampLastChangedOn()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getHotZoneInfo(), targetData.getHotZoneInfo())) { + updateData.setHotZoneInfo(sourceData.getHotZoneInfo()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getCreateOrg(), targetData.getCreateOrg())) { + updateData.setCreateOrg(sourceData.getCreateOrg()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopStatus(), targetData.getStopStatus())) { + updateData.setStopStatus(sourceData.getStopStatus()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRemarks(), targetData.getRemarks())) { + updateData.setRemarks(sourceData.getRemarks()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDeptId(), targetData.getDeptId())) { + updateData.setDeptId(sourceData.getDeptId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getContactUser(), targetData.getContactUser())) { + updateData.setContactUser(sourceData.getContactUser()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getContactPhone(), targetData.getContactPhone())) { + updateData.setContactPhone(sourceData.getContactPhone()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getBinCnt(), targetData.getBinCnt())) { + updateData.setBinCnt(sourceData.getBinCnt()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsMgrStack(), targetData.getIsMgrStack())) { + updateData.setIsMgrStack(sourceData.getIsMgrStack()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopTime(), targetData.getStopTime())) { + updateData.setStopTime(sourceData.getStopTime()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopUserId(), targetData.getStopUserId())) { + updateData.setStopUserId(sourceData.getStopUserId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getStopUser(), targetData.getStopUser())) { + updateData.setStopUser(sourceData.getStopUser()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsMgrWhStack(), targetData.getIsMgrWhStack())) { + updateData.setIsMgrWhStack(sourceData.getIsMgrWhStack()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getRegion(), targetData.getRegion())) { + updateData.setRegion(sourceData.getRegion()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getIsInterSUage(), targetData.getIsInterSUage())) { + updateData.setIsInterSUage(sourceData.getIsInterSUage()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefBinId(), targetData.getDefBinId())) { + updateData.setDefBinId(sourceData.getDefBinId()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefBinCode(), targetData.getDefBinCode())) { + updateData.setDefBinCode(sourceData.getDefBinCode()); + needUpdate = true; + } + if (shouldUpdateField(sourceData.getDefBin(), targetData.getDefBin())) { + updateData.setDefBin(sourceData.getDefBin()); + needUpdate = true; + } + + // 2. 需要更新 → 只更新变化字段 + if (needUpdate) { + this.updateById(updateData); return 2; } - // 时间戳相同,跳过 + + // 3. 无需更新 return 0; } + /** + * 核心判断规则: + * 1. 目标字段 == null → 需要更新 + * 2. 目标字段 != null,但 和源数据值不同 → 需要更新 + * 3. 目标字段有值 + 和源相同 → 不更新 + */ + public static boolean shouldUpdateField(Object source, Object target) { + //目标 + if (target == null) + return true; + //源 + if (source == null) + return false; + return !target.equals(source); + } + } \ No newline at end of file diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/ErpDataSyncLogService.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/ErpDataSyncLogService.java new file mode 100644 index 0000000..8d0c516 --- /dev/null +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/ErpDataSyncLogService.java @@ -0,0 +1,9 @@ +package com.lideeyunji.core.framework.service.erp; + +import com.baomidou.dynamic.datasource.annotation.DS; +import com.lideeyunji.core.framework.entity.ErpDtaSyncLogEntity; +import org.apache.ibatis.annotations.Param; + +public interface ErpDataSyncLogService { + ErpDtaSyncLogEntity selectone(@Param("dataSourceType") String dataSourceType); +} diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/impl/ErpDataSyncLogServiceImpl.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/impl/ErpDataSyncLogServiceImpl.java new file mode 100644 index 0000000..bc9b135 --- /dev/null +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/service/erp/impl/ErpDataSyncLogServiceImpl.java @@ -0,0 +1,31 @@ +package com.lideeyunji.core.framework.service.erp.impl; + +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.dynamic.datasource.annotation.DSTransactional; +import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.lideeyunji.core.framework.entity.ErpDtaSyncLogEntity; +import com.lideeyunji.core.framework.mapper.erp.ErpDataSyncLogMapper; +import com.lideeyunji.core.framework.service.erp.ErpDataSyncLogService; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class ErpDataSyncLogServiceImpl extends ServiceImpl implements ErpDataSyncLogService{ + + @DSTransactional + @DS(value = "#dataSourceType") + public ErpDtaSyncLogEntity selectone( String dataSourceType) { + // 1. 打印注解上配置的数据源名称 + System.out.println("1. @DS 注解指定的数据源是: erp"); + + // 2. 获取当前线程正在使用的数据源 Key + String currentDsKey = DynamicDataSourceContextHolder.peek(); + System.out.println("2. 当前线程使用的数据源 Key 是: " + currentDsKey); + List list = this.baseMapper.getList( + dataSourceType + ); + return list.isEmpty() ? null : list.get(0); + } +} diff --git a/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/constant/lideeYunJiBaseConstant.java b/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/constant/lideeYunJiBaseConstant.java index b8ee9fd..4462644 100644 --- a/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/constant/lideeYunJiBaseConstant.java +++ b/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/constant/lideeYunJiBaseConstant.java @@ -11,9 +11,12 @@ public interface lideeYunJiBaseConstant { String DS_MASTER="master";//主服务 String DS_ORACLE_GRYYBI="oracle_gryybi";//报表平台 oracle String DS_ERP_BI_DATA="erp_bi_data";//报表平台 mysql + String ERP_DATASOURCE = "erp"; + String SJZT_DATASOURCE = "sjzt"; String REQUEST_URL_START="/lideeyunji";//公共请求 String BASE_PACKAGES="com.lideeyunji";//公共包名称 String BASE_PACKAGES_CODE=BASE_PACKAGES+".core";//核心包名 String BASE_PACKAGES_MODULE = BASE_PACKAGES+".module";//个人业务模块 + } diff --git a/sql/gzgl.sql b/sql/gzgl.sql index 27140cf..8561d28 100644 --- a/sql/gzgl.sql +++ b/sql/gzgl.sql @@ -1,1383 +1,17 @@ - -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('维修管理-设备类型', 'device_type', 0, '', 1, '2026-03-20 15:27:21', 1, '2026-03-20 15:27:21', 0, '2026-03-20 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('故障报修状态', 'fault_repair_status', 0, '', 1, '2026-03-20 08:09:36', 1, '2026-03-20 08:09:36', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('维修工单-验收状态', 'maintenance_status', 0, '', 1, '2026-03-19 15:27:32', NULL, '2026-03-19 15:28:24', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('故障优先级', 'fault_priority_type', 0, '', 1, '2026-03-19 11:10:41', 1, '2026-03-19 11:10:41', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('故障工单类型', 'faul_order_type', 0, '', 1, '2026-03-19 11:09:45', 1, '2026-03-19 11:09:45', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('故障处理状态', 'fault_handling_status', 0, '', 1, '2026-03-19 11:07:48', 1, '2026-03-19 11:07:48', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('是否已停机', 'is_shut_down', 0, '', 1, '2026-03-18 14:48:16', 1, '2026-03-18 14:48:16', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('Integer是否类型', 'infra_boolean_integer', 0, '', 1, '2026-03-18 14:30:06', 1, '2026-03-18 14:30:06', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('维修管理-严重级别', 'wxgl_yzjb', 0, '', 1, '2026-03-18 10:11:47', 1, '2026-03-18 10:11:47', 0, '1970-01-01 00:00:00'); -INSERT INTO `system_dict_type` (`name`, `type`, `status`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`, `deleted_time`) VALUES ('维修管理-故障类型', 'wxgl_gzlx', 0, '', 1, '2026-03-18 10:05:47', 1, '2026-03-18 10:05:47', 0, '1970-01-01 00:00:00'); - -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '已完成', '3', 'fault_repair_status', 0, '', '', '', 1, '2026-03-20 08:10:31', NULL, '2026-03-21 14:41:48', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (17, '其他', '17', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (16, '储运部', '16', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (15, '技术中心', '15', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (14, '化验室', '14', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (13, '动力车间', '13', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (12, '原料车间3号生产线', '12', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (11, '原料车间2号生产线', '11', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (10, '原料车间1号生产线', '10', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (9, '口服固体制剂2号生产线', '9', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (8, '口服固体制剂1号生产线', '8', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (7, '小容量注射剂2号生产线', '7', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (6, '小容量注射剂1号生产线', '6', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (5, '一般粉针生产线', '5', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (4, '头孢粉针生产线', '4', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (3, '冻干粉针3号生产线', '3', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (2, '冻干粉针2号生产线', '2', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (1, '冻干粉针1号生产线', '1', 'device_type', 0, '', '', '', 1, '2026-03-20 15:27:50', 1, '2026-03-20 15:27:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '已受理', '2', 'fault_repair_status', 0, '', '', '', 1, '2026-03-20 08:10:31', NULL, '2026-03-21 14:41:48', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '已受理', '1', 'fault_repair_status', 0, '', '', '', 1, '2026-03-20 08:10:20', 1, '2026-03-20 08:10:20', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '待处理', '0', 'fault_repair_status', 0, '', '', '', 1, '2026-03-20 08:09:58', 1, '2026-03-20 08:09:58', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '已验收', '1', 'maintenance_status', 0, '', '', '', 1, '2026-03-19 15:28:10', 1, '2026-03-19 15:28:10', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '待验收', '0', 'maintenance_status', 0, '', '', '', 1, '2026-03-19 15:28:05', 1, '2026-03-19 15:28:05', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '高', '3', 'fault_priority_type', 0, 'danger', '', '', 1, '2026-03-19 11:11:08', 1, '2026-03-19 11:11:08', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '中', '2', 'fault_priority_type', 0, 'warning', '', '', 1, '2026-03-19 11:10:56', NULL, '2026-03-19 11:11:21', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '低', '1', 'fault_priority_type', 0, 'info', '', '', 1, '2026-03-19 11:10:49', NULL, '2026-03-19 11:11:16', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '委外', '2', 'faul_order_type', 0, '', '', '', 1, '2026-03-19 11:10:10', 1, '2026-03-19 11:10:10', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '自修', '1', 'faul_order_type', 0, '', '', '', 1, '2026-03-19 11:10:06', 1, '2026-03-19 11:10:06', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '未处理', '0', 'fault_handling_status', 0, 'info', '', '', 1, '2026-03-19 11:08:18', 1, '2026-03-19 11:08:18', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '已处理', '1', 'fault_handling_status', 0, 'success', '', '', 1, '2026-03-19 11:08:00', NULL, '2026-03-19 11:08:23', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '未停机', '0', 'is_shut_down', 0, '', '', '', 1, '2026-03-18 14:48:46', 1, '2026-03-18 14:48:46', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '已停机', '1', 'is_shut_down', 0, '', '', '', 1, '2026-03-18 14:48:36', 1, '2026-03-18 14:48:36', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '否', '0', 'infra_boolean_integer', 0, '', '', '', 1, '2026-03-18 14:30:19', 1, '2026-03-18 14:30:19', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '是', '1', 'infra_boolean_integer', 0, '', '', '', 1, '2026-03-18 14:30:14', 1, '2026-03-18 14:30:14', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '严重', '3', 'wxgl_yzjb', 0, 'danger', '', '', 1, '2026-03-18 10:12:33', 1, '2026-03-18 10:12:33', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '重要', '2', 'wxgl_yzjb', 0, '', '', '', 1, '2026-03-18 10:12:19', 1, '2026-03-18 10:12:19', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '一般', '1', 'wxgl_yzjb', 0, '', '', '', 1, '2026-03-18 10:12:13', 1, '2026-03-18 10:12:13', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '其他', '4', 'wxgl_gzlx', 0, '', '', '', 1, '2026-03-18 10:06:50', 1, '2026-03-18 10:06:50', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '机械故障', '3', 'wxgl_gzlx', 0, '', '', '', 1, '2026-03-18 10:06:43', 1, '2026-03-18 10:06:43', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '电气故障', '2', 'wxgl_gzlx', 0, '', '', '', 1, '2026-03-18 10:06:32', 1, '2026-03-18 10:06:32', 0); -INSERT INTO `system_dict_data` (`sort`, `label`, `value`, `dict_type`, `status`, `color_type`, `css_class`, `remark`, `create_user`, `create_time`, `update_user`, `update_time`, `is_deleted`) VALUES (0, '系统故障', '1', 'wxgl_gzlx', 0, '', '', '', 1, '2026-03-18 10:06:19', 1, '2026-03-18 10:06:19', 0); - - -DROP TABLE IF EXISTS `dev_gzbx`; -CREATE TABLE `dev_gzbx` ( - `id` bigint NOT NULL COMMENT '主键', - `tenant_id` bigint NULL DEFAULT NULL COMMENT '租户id', - `fault_number` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障编号', - `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障名称', - `dev_type` int NULL DEFAULT NULL COMMENT '设备类型', - `dev_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '设备名称', - `dev_no` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '设备编号', - `type` tinyint NULL DEFAULT NULL COMMENT '故障类型', - `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障描述', - `level` tinyint NULL DEFAULT NULL COMMENT '严重级别', - `is_stop` tinyint NULL DEFAULT NULL COMMENT '是否已停机', - `reporter` bigint NULL DEFAULT NULL COMMENT '上报人', - `phone_number` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '手机号码', - `create_user` bigint NULL DEFAULT NULL COMMENT '创建人', - `create_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门id', - `update_user` bigint NULL DEFAULT NULL COMMENT '更新人', - `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', - `is_deleted` tinyint NULL DEFAULT 0 COMMENT '是否删除', - `dev_status` tinyint NULL DEFAULT 0 COMMENT '维修状态', - `processing_status` tinyint NULL DEFAULT 0 COMMENT '处理状态', - `create_user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人姓名', - PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '设备故障报修' ROW_FORMAT = DYNAMIC; - -SET FOREIGN_KEY_CHECKS = 1; - - - - -DROP TABLE IF EXISTS `dev_gzbx_plan_step`; -CREATE TABLE `dev_gzbx_plan_step` ( - `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'id', - `plan_id` bigint NULL DEFAULT NULL COMMENT '方案id', - `step` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '步骤', - `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', - `update_user` bigint NULL DEFAULT NULL COMMENT '更新人', - `create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门id', - `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', - `create_user` bigint NULL DEFAULT NULL COMMENT '创建人', - `tenant_id` bigint NULL DEFAULT NULL COMMENT '租户编号', - `is_deleted` int NULL DEFAULT 0 COMMENT '是否删除', - PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 2035958249577574403 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bg_0900_ai_ci COMMENT = '故障报修-方案步骤' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Records of dev_gzbx_plan_step --- ---------------------------- -INSERT INTO `dev_gzbx_plan_step` VALUES (1, 1, '1', NULL, NULL, NULL, NULL, NULL, NULL, 0); -INSERT INTO `dev_gzbx_plan_step` VALUES (2034177378348560386, 2029201620194643970, 'cs ', NULL, NULL, 100, '2026-03-18 15:57:35', 1, NULL, 0); -INSERT INTO `dev_gzbx_plan_step` VALUES (2034899364632592385, 2034899275189059585, '1', NULL, NULL, 100, '2026-03-20 15:46:30', 1, NULL, 0); -INSERT INTO `dev_gzbx_plan_step` VALUES (2034899364817141761, 2034899275189059585, '2', NULL, NULL, 100, '2026-03-20 15:46:30', 1, NULL, 0); -INSERT INTO `dev_gzbx_plan_step` VALUES (2035958248935845889, 2035958173450956801, '测试', NULL, NULL, 100, '2026-03-23 13:54:08', 1, NULL, 0); -INSERT INTO `dev_gzbx_plan_step` VALUES (2035958249258807297, 2035958173450956801, '333', NULL, NULL, 100, '2026-03-23 13:54:08', 1, NULL, 0); -INSERT INTO `dev_gzbx_plan_step` VALUES (2035958249577574402, 2035958173450956801, '444', NULL, NULL, 100, '2026-03-23 13:54:08', 1, NULL, 0); - -SET FOREIGN_KEY_CHECKS = 1; - - - -DROP TABLE IF EXISTS `dev_gzbx_wxfa`; -CREATE TABLE `dev_gzbx_wxfa` ( - `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', - `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', - `update_user` bigint NULL DEFAULT NULL COMMENT '更新人', - `create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门id', - `create_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `create_user` bigint NULL DEFAULT NULL COMMENT '创建人', - `tenant_id` bigint NULL DEFAULT NULL COMMENT '租户编号', - `is_deleted` int NULL DEFAULT 0 COMMENT '是否删除', - `dev_type` int NULL DEFAULT NULL COMMENT '设备类型', - `dev_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '设备名称', - `dev_no` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '设备编号', - `fault_type` tinyint NULL DEFAULT NULL COMMENT '故障类型', - `fault_remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '故障描述', - `dev_status` tinyint NULL DEFAULT NULL COMMENT '维修状态', - `gzbx_id` bigint NULL DEFAULT NULL COMMENT '关联id', - `processing_status` tinyint NULL DEFAULT 0 COMMENT '处理状态', - `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '方案名称', - `number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '方案编号', - PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 2035958173450956802 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bg_0900_ai_ci COMMENT = '维修方案' ROW_FORMAT = Dynamic; - -SET FOREIGN_KEY_CHECKS = 1; - - - -DROP TABLE IF EXISTS `dev_gzbx_wxgd`; -CREATE TABLE `dev_gzbx_wxgd` ( - `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', - `gzbx_id` bigint NOT NULL COMMENT '故障报修id', - `is_deleted` tinyint NULL DEFAULT 0 COMMENT '是否删除', - `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', - `update_user` bigint NULL DEFAULT NULL COMMENT '更新人', - `create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门id', - `create_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', - `create_user` bigint NULL DEFAULT NULL COMMENT '创建人', - `tenant_id` bigint NULL DEFAULT NULL COMMENT '租户编号', - `processing_status` tinyint NULL DEFAULT NULL COMMENT '验收状态(1,已验收。0:待验收)', - `name` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '工单名称', - `fault_type` tinyint NULL DEFAULT NULL COMMENT '故障类型', - `dev_no` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '设备编号', - `dev_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '设备名称', - `priority` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT '1' COMMENT '优先级', - `type` tinyint NULL DEFAULT 1 COMMENT '类型', - `number` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '工单编号', - `fault_remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障描述', - `dev_type` int NULL DEFAULT NULL COMMENT '设备类型', - `maintenance_person` bigint NULL DEFAULT NULL COMMENT '维修人员', - `is_top` tinyint NULL DEFAULT 0 COMMENT '是否停机', - `is_filing` tinyint NULL DEFAULT 0 COMMENT '是否备案', - `reporter` bigint NULL DEFAULT NULL COMMENT '上报人', - `phone_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bg_0900_ai_ci NULL DEFAULT NULL COMMENT '手机号', - `dev_status` tinyint NULL DEFAULT 0 COMMENT '处理状态(0未处理,1已生成方案,2:待验收阶段。3已完成))', - `level` tinyint NULL DEFAULT NULL COMMENT '严重级别', - `completion_time` datetime NULL DEFAULT NULL COMMENT '完成时间', - `acceptance_time` datetime NULL DEFAULT NULL COMMENT '验收时间', - `create_user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人姓名', - PRIMARY KEY (`id`) USING BTREE, - INDEX `index_gzbx_id`(`gzbx_id` ASC) USING BTREE COMMENT '故障报修id' -) ENGINE = InnoDB AUTO_INCREMENT = 2034101303270473791 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bg_0900_ai_ci COMMENT = '维修管理-维修工单' ROW_FORMAT = Dynamic; - -SET FOREIGN_KEY_CHECKS = 1; - - - -INSERT INTO `yunji_dbform_button` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_name`, `button_code`, `button_icon`, `button_location`, `button_type`, `button_sort`, `button_exp`, `button_show`, `button_auth`, `button_i18n`) VALUES (2035239449689391106, NULL, 1, '2026-03-21 14:17:52', 100, NULL, NULL, 0, 2029127856085889025, '处理', 'handleBtn', 'ep:circle-check', 'menu', 'primary', 1, '', 'Y', 'N', ''); -INSERT INTO `yunji_dbform_button` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_name`, `button_code`, `button_icon`, `button_location`, `button_type`, `button_sort`, `button_exp`, `button_show`, `button_auth`, `button_i18n`) VALUES (2034879804118450177, NULL, 1, '2026-03-20 14:28:46', 100, NULL, NULL, 0, 2029008606117568513, '验收', 'handleBtn', 'ep:checked', 'menu', 'primary', 1, '', 'Y', 'N', ''); -INSERT INTO `yunji_dbform_button` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_name`, `button_code`, `button_icon`, `button_location`, `button_type`, `button_sort`, `button_exp`, `button_show`, `button_auth`, `button_i18n`) VALUES (2034454110808956929, NULL, 1, '2026-03-19 10:17:13', 100, 1, '2026-03-19 16:17:38', 0, 2029461151661809665, '处理', 'handleBtn', 'ep:circle-check', 'menu', 'primary', 1, '', 'Y', 'Y', 'return {\n //简体中文\n \'zh-CN\': \'处理\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_button` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_name`, `button_code`, `button_icon`, `button_location`, `button_type`, `button_sort`, `button_exp`, `button_show`, `button_auth`, `button_i18n`) VALUES (2034187883645628418, NULL, 1, '2026-03-18 16:39:20', 100, 1, '2026-03-20 14:28:30', 0, 2029007775825731586, '验收', 'handleBtn', 'ep:checked', 'menu', 'primary', 1, '', 'Y', 'Y', ''); -INSERT INTO `yunji_dbform_button` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_name`, `button_code`, `button_icon`, `button_location`, `button_type`, `button_sort`, `button_exp`, `button_show`, `button_auth`, `button_i18n`) VALUES (2033820252375666690, NULL, 1, '2026-03-17 16:18:29', 100, 1, '2026-03-19 13:51:49', 0, 2021105111153053697, '处理', 'handleBtn', 'ep:circle-check', 'menu', 'primary', 1, '// 如果按钮名称需要直接修改,可以使用这种方式\r\n if (buttonObj.value.menu.handleBtn) {\r\n // 保持原有点击事件,但在点击前做判断\r\n const originalClick = buttonObj.value.menu.handleBtn.click\r\n buttonObj.value.menu.handleBtn.click = (row) => {\r\n if (row.status === \'1\' || row.status === 1) {\r\n // 已处理状态,给出提示\r\n if (window.$message) {\r\n window.$message.warning(\'该工单已处理,不能重复操作\')\r\n }\r\n return\r\n }\r\n // 调用原有的点击事件\r\n if (originalClick) {\r\n originalClick(row)\r\n } else {\r\n this.handleBtn(row)\r\n }\r\n }\r\n }', 'Y', 'Y', ''); -INSERT INTO `yunji_dbform_button` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_name`, `button_code`, `button_icon`, `button_location`, `button_type`, `button_sort`, `button_exp`, `button_show`, `button_auth`, `button_i18n`) VALUES (1896485120059236354, 1, 1, '2025-03-03 16:57:42', 101, 1, '2025-03-03 16:58:36', 1, 1831577841380671489, '测试按钮权限', 'text_auth', '', 'menu', '', 1, '', 'Y', 'Y', NULL); - -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2029031824572297217, NULL, 1, '2026-03-04 11:10:59', 100, 1, '2026-03-20 14:42:30', 0, 2029007775825731586, 'edit', 'spring', 'EquipmentMalfunctionCheck', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2033824477352611841, NULL, 1, '2026-03-17 16:35:17', 100, NULL, NULL, 1, 2021105111153053697, 'summary', 'spring', '1', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2033828258853240833, NULL, 1, '2026-03-17 16:50:18', 100, NULL, NULL, 1, 2021105111153053697, 'handle', 'spring', 'faultRepairController', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2034456668768165889, NULL, 1, '2026-03-19 10:27:23', 100, 1, '2026-03-19 10:56:20', 0, 2029461151661809665, 'edit', 'spring', 'FaultRepairFunctionRecord', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2034510410154512385, NULL, 1, '2026-03-19 14:00:56', 100, NULL, NULL, 0, 2021105111153053697, 'add', 'spring', 'AddFaultFeportingFunctionRecord', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2035906139586658305, NULL, 1, '2026-03-23 10:27:04', 100, NULL, NULL, 0, 2020794743126093825, 'add', 'spring', 'EquipmentArchivesFunctionRecord', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2028768036535238657, NULL, 1, '2026-03-03 17:42:47', 100, NULL, NULL, 0, 2021105111153053697, 'edit', 'spring', 'equipmentMalfunctionRepair', '', 'Y', '', '0', 1); -INSERT INTO `yunji_dbform_enhance_java` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `java_type`, `java_class_url`, `online_script`, `active_status`, `remark`, `list_result_handle_type`, `sort`) VALUES (2029167602396839938, NULL, 1, '2026-03-04 20:10:31', 100, NULL, NULL, 0, 2029127856085889025, 'edit', 'spring', 'equipmentMalfunctionRecord', '', 'Y', '', '0', 1); - - - -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (1846086136306475010, 1, 1, '2024-10-15 15:10:08', 101, 1, '2026-03-19 12:03:28', 0, 1846083503466356737, 'js', '\n\n//初始化控件\nuseFun.controlInit(\'FormView\', \'formView_8174\', {\n formId: \'1846092785716961282\', //表单设计id\n formType: \'add\', //表单类型 add | edit | view\n handleType: \'\', //处理类型 default | returnData\n showType: \'dialog\', //弹窗类型 dialog | drawer\n showButton: true, //是否显示底部默认操作按钮\n dataOption: { //数据配置 \n tableId: \'1846083503466356737\', //表单开发id\n dataId: \'\' //数据id\n },\n defaultData: {}, //默认表单数据\n enhanceData: {}, //传递给表单js增强内部调用配置\n popOption: { //弹窗配置\n title: \'测试表单\', //标题\n width: \'40%\', //弹窗宽度\n fullscreen: false, //是否全屏\n footerBtn: [ //底部按钮配置\n // {\n // params: {}, //el-button 其他参数\n // name: \'测试按钮\', //按钮名称\n // display: true, //是否显示\n // loading: true, //点击时是否有loading\n // icon: \'\', //图标\n // clickFun: (loading) => {\n // //点击事件\n // if (loading) loading() //关闭loading\n // }\n // }\n ],\n headerBtn: [], //顶部按钮配置(配置同上)\n dialogParams: {} //弹窗其他配置\n },\n beforeClose: (type, done, formData, loading) => {\n // type:关闭类型 submit:提交后触发 close:直接关闭弹窗触发\n // done:关闭弹窗方法 formData:表单数据 loading:关闭loading方法\n if (type == \'submit\') {\n console.log(\'表单数据\', formData)\n }\n done()\n }\n})\n\n\n//初始化控件\nuseFun.controlInit(\'ControlView\', \'controlView_94665\', {\n controlName: \'postForm\', //控件名称(全局注册的控件使用,例:el-transfer )\n controlPath: \'views/lowTemplate/generalPage/post/postForm.vue\', //控件相对路径(未全局注册的控件使用,例:components/IFrame/src/IFrame.vue)\n controlParams: {}, //控件配置\n showType: \'dialog\', //弹窗类型 dialog | drawer\n popOption: { //弹窗配置\n title: \'职务详情\', //标题\n width: \'90%\', //弹窗宽度\n fullscreen: false, //是否全屏\n footerBtn: [ //底部按钮配置\n // {\n // params: {}, //el-button 其他参数\n // name: \'保存\', //按钮名称\n // display: true, //是否显示\n // loading: true, //点击时是否有loading\n // icon: \'\', //图标\n // clickFun: (loading) => {\n // //点击事件\n // if (loading) loading() //关闭loading\n // }\n // }\n ],\n headerBtn: [], //顶部按钮配置(配置同上)\n dialogParams: {}, //弹窗其他配置\n handleClose: (done) => { //关闭弹窗前的回调\n done()\n }\n }\n})\n\n//控件调用\nconst { formView_8174, controlView_94665 } = Vue.toRefs(rendControlData.value)\n// componentRef.value.formView_8174 FormView的Ref控件引用\n\n\nreturn {\n initOption() { //表格显示前执行\n console.log(\'6666\', buttonObj.value)\n let arr = [\'fzBtn\', \'delBtn\', \'editBtn\', \'szqxBtn\', \'szztBtn\', \'userBtn\']\n arr.map(item => {\n buttonObj.value.menu[item].params = {\n plain: true,\n text: false,\n size: \"small\"\n }\n })\n tableOption.value.menuWidth = 580\n tableOption.value.refreshBtn = false\n tableOption.value.searchShowBtn = false\n tableOption.value.columnBtn = false\n buttonObj.value.header.addBtn.label = \'新建职务\'\n buttonObj.value.menu.editBtn.label = \'编辑职务\'\n useFun.setPropConfig(\'time\', {\n width: 180,\n })\n useFun.setPropConfig(\'zt\', {\n render: (optins) => {\n let { row, column } = optins\n let reStatus = \'\'\n let status = row.zt\n let color = \'#4BD863\'\n column.dicData.some(item => {\n if (item.value == status) {\n reStatus = item.label\n status == \'2\' ? color = \'red\' : \'\'\n return true\n }\n })\n const radius = h(\'div\', { style: { width: \'6px\', height: \'6px\', borderRadius: \'50%\', backgroundColor: color, marginRight: \'5px\' } }, \'\')\n if (reStatus) return h(\'span\', { style: { display: \'flex\', alignItems: \'center\', justifyContent: \'center\' } }, [radius, reStatus])\n }\n })\n },\n beforeRequest(type, apiData) { //新增、修改、删除请求接口前执行\n return new Promise((resolve, reject) => {\n if (type == \'add\') {\n apiData.zt = 1\n apiData.cysl = 100\n apiData.bmms = \'暂无相关描述\'\n apiData.time = useFun.formatDate(new Date, \'YYYY-MM-DD HH:mm:ss\')\n }\n resolve(apiData)\n // reject() 可以停止当前请求台的操作\n })\n },\n cellStyle({ row, column, rowIndex, columnIndex }) { //列样式\n if (columnIndex == 3) {\n return {\n color: \'#409eff\'\n }\n }\n },\n szqxBtn(row) {\n controlView_94665.value.show = true //显示FormView\n const controlData = controlView_94665.value.params //FormView的配置\n },\n userBtn(row) {\n formView_8174.value.show = true //显示FormView\n const controlData = formView_8174.value.params //FormView的配置\n controlData.defaultData.type = \'tjry\'\n controlData.defaultData.zwmc = row.zwmc\n controlData.popOption.title = \'添加人员\'\n },\n szztBtn(row) {\n formView_8174.value.show = true //显示FormView\n const controlData = formView_8174.value.params //FormView的配置\n controlData.defaultData.type = \'szzt\'\n controlData.popOption.title = \'设置状态\'\n },\n fzBtn(row) {\n formView_8174.value.show = true //显示FormView\n const controlData = formView_8174.value.params //FormView的配置\n controlData.defaultData.type = \'fz\'\n controlData.popOption.title = \'复制职务\'\n }\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034195712150466561, NULL, 1, '2026-03-18 17:10:26', 100, 1, '2026-03-23 12:38:47', 0, 2021105111153053697, 'js', 'useFun.controlInit(\'FormView\', \'formView_84087\', {\n formId: \'2034431356751638529\',\n formType: \'edit\',\n handleType: \'returnData\',\n showType: \'dialog\',\n showButton: true,\n dataOption: { tableId: \'2021105111153053697\', dataId: \'\' },\n defaultData: { submitType: \'\' },\n enhanceData: {\n // 👇 核心:设备类型下拉 + 处理字段\n fieldConfig: {\n dev_type: {\n label: \'设备类型\',\n type: \'select\',\n required: true,\n placeholder: \'请选择设备类型\',\n options: [\n { label: \'生产设备\', value: \'1\' },\n { label: \'运输设备\', value: \'2\' },\n { label: \'检测设备\', value: \'3\' },\n { label: \'其他设备\', value: \'4\' }\n ]\n },\n chuli: { label: \'处理建议\', required: true }\n },\n formTitle: \'处理报修\',\n submitBtnText: \'提交\',\n cancelBtnText: \'取消\',\n contentStyle: {\n padding: \'40px 32px\',\n textAlign: \'center\',\n fontSize: \'22px\',\n fontWeight: \'500\',\n color: \'#333\'\n },\n btnStyle: {\n submit: {\n background: \'#1890ff\',\n borderColor: \'#1890ff\',\n color: \'#fff\',\n padding: \'10px 28px\',\n borderRadius: \'6px\'\n },\n cancel: {\n background: \'#f5f7fa\',\n borderColor: \'#e4e7ed\',\n color: \'#606266\',\n padding: \'10px 28px\',\n borderRadius: \'6px\'\n }\n }\n },\n popOption: {\n title: \'处理报修\',\n width: \'50%\',\n headerStyle: {\n padding: \'16px 24px\',\n fontSize: \'18px\',\n fontWeight: \'600\',\n borderBottom: \'1px solid #e8e8e8\'\n },\n footerStyle: {\n padding: \'16px 24px\',\n borderTop: \'1px solid #e8e8e8\',\n textAlign: \'right\'\n }\n },\n beforeClose: (type, done) => {\n if (type == \'submit\') {\n const successTip = document.createElement(\'div\');\n successTip.style.cssText = `\n position: fixed;\n top: 20px;\n left: 50%;\n transform: translateX(-50%);\n padding: 12px 32px;\n background: #f2f9f2;\n color: #52c41a;\n border-radius: 8px;\n font-size: 16px;\n font-weight: 500;\n z-index: 9999;\n display: flex;\n align-items: center;\n gap: 12px;\n box-shadow: 0 2px 12px rgba(82, 196, 26, 0.15);\n border: 1px solid #e6f7e6;\n `;\n successTip.innerHTML = `\n \n \n \n \n 操作成功\n `;\n document.body.appendChild(successTip);\n setTimeout(() => { successTip.remove(); }, 2000);\n\n if (controlView_77755?.value) {\n controlView_77755.value.refresh();\n }\n setTimeout(setLevelColor, 300);\n }\n done();\n }\n})\n\n// 严重级别颜色\nfunction setLevelColor() {\n setTimeout(() => {\n document.querySelectorAll(\'.low-table__2021105111153053697 .el-table__cell\').forEach(cell => {\n const t = cell.textContent.trim();\n const map = { \'一般\': \'#52c41a\', \'重要\': \'#fa8c16\', \'严重\': \'#ff4d4f\' };\n if (map[t]) { cell.style.color = map[t]; cell.style.fontWeight = \'700\'; }\n })\n }, 200)\n}\n\n// 字典翻译函数\nfunction translateDict(row) {\n const faultTypeMap = { \'1\': \'系统故障\', \'2\': \'电气故障\', \'3\': \'机械故障\', \'4\': \'其他\' };\n const levelMap = { \'1\': \'一般\', \'2\': \'重要\', \'3\': \'严重\' };\n const isStopMap = { \'0\': \'未停机\', \'1\': \'已停机\' };\n const statusMap = { \'0\': \'待处理\', \'1\': \'已受理\', \'2\': \'已受理\', \'3\': \'已完成\' };\n const stripHtml = (html) => {\n if (!html) return \'\';\n return html.replace(/<[^>]+>/g, \'\');\n };\n return {\n ...row,\n dev_type: row.dev_type_text || row.dev_type || \'无\',\n type: faultTypeMap[row.type + \'\'] || row.type || \'无\',\n level: levelMap[row.level + \'\'] || row.level || \'无\',\n is_stop: isStopMap[row.is_stop + \'\'] || row.is_stop || \'无\',\n processing_status: statusMap[row.processing_status + \'\'] || row.processing_status || \'无\',\n remark: stripHtml(row.remark)\n };\n}\n\n// 获取控件\nconst { controlView_77755, formView_84087 } = Vue.toRefs(rendControlData.value)\nconst h = Vue.h\nlet detailDialog = null;\n\n// 详情弹窗\nfunction openViewFormPage(row) {\n if (!row) return;\n const data = translateDict(row);\n\n function cleanText(str) {\n if (!str) return \'无\';\n str = str.replace(/<[^>]*>/g, \'\');\n str = str.replace(/\\s+/g, \' \');\n return str.trim();\n }\n\n const fields = [\n { label: \'故障编号\', field: \'fault_number\' },\n { label: \'故障名称\', field: \'name\' },\n { label: \'故障类型\', field: \'type\' },\n { label: \'设备\', field: \'dev_name\' },\n { label: \'故障描述\', field: \'remark\', format: cleanText },\n { label: \'严重级别\', field: \'level\' },\n { label: \'是否已停机\', field: \'is_stop\' },\n { label: \'上报人\', field: \'reporter\' },\n { label: \'手机号码\', field: \'phone_number\' },\n { label: \'创建时间\', field: \'create_time\' },\n { label: \'处理状态\', field: \'processing_status\' }\n ];\n\n if (detailDialog) detailDialog.remove();\n const html = `\n
\n
\n
\n 详情\n \n
\n
\n
\n \n 基本信息\n
\n
\n ${fields.map(item => `\n
\n
${item.label}
\n
${item.format ? item.format(data[item.field]) : data[item.field] || \'无\'}
\n
\n `).join(\'\')}\n
\n
\n
\n \n
\n
\n
\n `;\n\n detailDialog = document.createElement(\'div\');\n detailDialog.innerHTML = html;\n document.body.appendChild(detailDialog);\n\n detailDialog.querySelectorAll(\'.close-detail\').forEach(btn => {\n btn.onclick = () => { detailDialog.remove(); detailDialog = null; };\n });\n}\n\n// 故障编号点击\nfunction initTableColumnConfig() {\n useFun.setPropConfig(\'fault_number\', {\n render: ({ row }) => {\n return h(\'span\', {\n style: { color: \'#1890ff\', cursor: \'pointer\', textDecoration: \'underline\', fontWeight: 500 },\n onClick: () => openViewFormPage(row)\n }, row.fault_number || \'-\');\n }\n });\n}\n\n// ========================= 【新增核心】设备类型联动自动回填设备信息 =========================\nfunction watchDevTypeChange() {\n if (!formView_84087.value) return;\n // 监听设备类型选择变化\n formView_84087.value.onFieldChange = (field, value) => {\n if (field === \'dev_type\' && value) {\n getDeviceInfoByType(value);\n }\n };\n}\n\n// 根据设备类型调用接口获取设备信息并回填\nasync function getDeviceInfoByType(devType) {\n try {\n // 修正URL:使用模板字符串正确替换路径变量\n const res = await useFun.http.get(`/lideeyunji/dev/selectByType/${devType}`);\n\n // 接口成功后自动回填表单\n if (res.code === 200 && res.data && res.data.length > 0) {\n // 注意:后端返回的是列表,取第一个设备信息\n const device = res.data[0];\n\n formView_84087.value.setFieldsValue({\n dev_name: device.devName, // 设备名称 (后端是devName)\n dev_code: device.devCode, // 设备编号 (后端是devCode)\n dev_model: device.devXh, // 设备型号 (后端是devXh)\n dev_spec: device.devGl, // 设备规格/管理 (后端是devGl)\n dev_address: device.devAzwz, // 设备安装位置 (后端是devAzwz)\n // 可继续添加其他需要回填的字段\n });\n } else if (res.code === 200 && res.data && res.data.length === 0) {\n console.warn(\'未找到对应设备类型的数据\');\n }\n } catch (err) {\n console.error(\'获取设备信息失败:\', err);\n }\n}\n\n\n// 初始化\nsetTimeout(() => {\n setLevelColor();\n initTableColumnConfig();\n watchDevTypeChange(); // 启动设备类型监听\n}, 600);\n\n// 返回方法\nreturn {\n handleBtn(row) {\n formView_84087.value.show = true //显示FormView\n const controlData = formView_84087.value.params //FormView的配置\n controlData.defaultData = {\n submitType: \'ys\',\n id: row.id,\n fault_number: row.fault_number,\n name: row.name\n }\n },\n handleCloseBtn(row) {\n formView_84087.value.show = true\n const d = formView_84087.value.params\n d.defaultData = { submitType: \'clbx\', id: row.id }\n d.popOption.title = \'关闭工单\'\n d.enhanceData = {\n fieldConfig: {\n dev_type: {\n label: \'设备类型\',\n type: \'select\',\n required: true,\n placeholder: \'请选择设备类型\',\n options: [\n { label: \'生产设备\', value: \'1\' },\n { label: \'运输设备\', value: \'2\' },\n { label: \'检测设备\', value: \'3\' },\n { label: \'其他设备\', value: \'4\' }\n ]\n },\n chuli: { label: \'关闭原因\', required: true }\n },\n formTitle: \'关闭工单\',\n submitBtnText: \'确认关闭\'\n }\n },\n setLevelColor,\n openViewFormPage\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034455894214434818, NULL, 1, '2026-03-19 10:24:18', 100, 1, '2026-03-23 11:45:04', 0, 2029461151661809665, 'js', '// 初始化处理报修表单\nuseFun.controlInit(\'FormView\', \'formView_84087\', {\n formId: \'2034878471818756097\',\n formType: \'edit\',\n handleType: \'returnData\',\n showType: \'dialog\',\n showButton: true,\n dataOption: { tableId: \'2029461151661809665\', dataId: \'\' },\n defaultData: { submitType: \'\' },\n enhanceData: {\n fieldConfig: { \'chuli\': { label: \'处理建议\', required: true, type: \'textarea\', rows: 4 } },\n formTitle: \'处理工单\', submitBtnText: \'提交处理\'\n },\n popOption: { title: \'处理工单\', width: \'40%\' },\n beforeClose: (type, done) => {\n if (type == \'submit\') {\n // 完全复刻截图样式的「操作成功」提示\n const successTip = document.createElement(\'div\');\n successTip.style.cssText = `\n position: fixed;\n top: 20px;\n left: 50%;\n transform: translateX(-50%);\n padding: 12px 32px;\n background: #f2f9f2; /* 极浅绿背景 */\n color: #52c41a; /* 深绿文字 */\n border-radius: 8px; /* 大圆角 */\n font-size: 16px;\n font-weight: 500;\n z-index: 9999;\n display: flex;\n align-items: center;\n gap: 12px;\n box-shadow: 0 2px 12px rgba(82, 196, 26, 0.15);\n border: 1px solid #e6f7e6;\n `;\n // 圆形对勾图标(和截图完全一致)\n successTip.innerHTML = `\n \n \n \n \n 操作成功\n `;\n document.body.appendChild(successTip);\n\n // 2秒后自动消失\n setTimeout(() => {\n successTip.remove();\n }, 2000);\n\n // 原有逻辑:刷新表格 + 重置级别颜色\n controlView_77755?.refresh();\n setTimeout(setLevelColor, 300);\n }\n done();\n }\n})\n\n// 严重级别颜色\nfunction setLevelColor() {\n setTimeout(() => {\n document.querySelectorAll(\'.low-table__2021105111153053697 .el-table__cell\').forEach(cell => {\n const t = cell.textContent.trim();\n const map = { \'低\': \'#52c41a\', \'中\': \'#fa8c16\', \'高\': \'#ff4d4f\' };\n if (map[t]) { cell.style.color = map[t]; cell.style.fontWeight = \'700\'; }\n })\n }, 200)\n}\n\n// ========================= 【核心】字典翻译函数 =========================\nfunction translateDict(row) {\n // 故障类型字典\n const faultTypeMap = { \'1\': \'系统故障\', \'2\': \'电气故障\', \'3\': \'机械故障\', \'4\': \'其他\' };\n // 严重级别字典\n const levelMap = { \'1\': \'一般\', \'2\': \'重要\', \'3\': \'严重\' };\n // 是否停机字典\n const isStopMap = { \'0\': \'未停机\', \'1\': \'已停机\' };\n // 处理状态字典\n const statusMap = { \'0\': \'待处理\', \'1\': \'已受理\', \'2\': \'已受理\', \'3\': \'已完成\' };\n\n const gdlxMap = { \'1\': \'自修\', \'2\': \'委外\' };\n\n const priorityMap = { \'1\': \'低\', \'2\': \'中\', \'3\': \'高\' };\n\n const fillingMap = { \'1\': \'是\', \'0\': \'否\' };\n return {\n ...row,\n\n // 故障类型\n fault_type: faultTypeMap[row.fault_type + \'\'] || row.fault_type || \'无\',\n // 严重级别\n level: levelMap[row.level + \'\'] || row.level || \'无\',\n // 是否停机\n is_stop: isStopMap[row.is_stop + \'\'] || row.is_stop || \'无\',\n // 处理状态\n processing_status: statusMap[row.processing_status + \'\'] || row.processing_status || \'无\',\n\n\n type: gdlxMap[row.type + \'\'] || row.type || \'无\',\n // 是否停机\n priority: priorityMap[row.priority + \'\'] || row.priority || \'无\',\n // 处理状态\n is_filing: fillingMap[row.is_filing + \'\'] || row.is_filing || \'无\'\n\n };\n}\n\n// 获取控件\nconst { controlView_77755, formView_84087 } = Vue.toRefs(rendControlData.value)\nconst h = Vue.h\nlet detailDialog = null;\n\n// ========================= 完美弹窗 =========================\nfunction openViewFormPage(row) {\n if (!row) return;\n // 自动翻译字典值\n const data = translateDict(row);\n\n const fields = [\n { label: \'工单编号\', field: \'number\' },\n { label: \'工单名称\', field: \'name\' },\n { label: \'设备\', field: \'dev_name\' },\n { label: \'设备编号\', field: \'dev_no\' },\n\n { label: \'故障类型\', field: \'fault_type\' },\n { label: \'故障描述\', field: \'fault_remark\' },\n { label: \'优先级\', field: \'priority\' },\n { label: \'类型\', field: \'type\' },\n { label: \'严重级别\', field: \'level\' },\n { label: \'维修人员\', field: \'maintenance_person\' },\n { label: \'是否申请备件\', field: \'is_filing\' },\n { label: \'是否已停机\', field: \'is_top\' },\n { label: \'上报人\', field: \'reporter\' },\n { label: \'手机号码\', field: \'phone_number\' }\n ];\n\n if (detailDialog) detailDialog.remove();\n const html = `\n
\n
\n
\n 详情\n \n
\n
\n
\n \n 基本信息\n
\n
\n ${fields.map(item => `\n
\n
${item.label}
\n
${data[item.field] || \'无\'}
\n
\n `).join(\'\')}\n
\n
\n
\n \n
\n
\n
\n `;\n\n detailDialog = document.createElement(\'div\');\n detailDialog.innerHTML = html;\n document.body.appendChild(detailDialog);\n\n detailDialog.querySelectorAll(\'.close-detail\').forEach(btn => {\n btn.onclick = () => { detailDialog.remove(); detailDialog = null; };\n });\n}\n\n// 故障编号点击\nfunction initTableColumnConfig() {\n useFun.setPropConfig(\'number\', {\n render: ({ row }) => {\n return h(\'span\', {\n style: { color: \'#1890ff\', cursor: \'pointer\', textDecoration: \'underline\', fontWeight: 500 },\n onClick: () => openViewFormPage(row)\n }, row.number || \'-\');\n }\n });\n}\n\n// 初始化\nsetTimeout(() => {\n setLevelColor();\n initTableColumnConfig();\n}, 600);\n\n// 返回方法\nreturn {\n handleBtn(row) {\n formView_84087.value.show = true //显示FormView\n const controlData = formView_84087.value.params //FormView的配置\n controlData.defaultData = {\n submitType: \'ys\',\n id: row.id,\n number: row.number,\n name: row.name\n }\n },\n handleCloseBtn(row) {\n formView_84087.value.show = true\n const d = formView_84087.value.params\n d.defaultData = { submitType: \'clbx\', id: row.id }\n d.popOption.title = \'关闭工单\'\n d.enhanceData = { fieldConfig: { chuli: { label: \'关闭原因\', required: true } }, formTitle: \'关闭工单\', submitBtnText: \'确认关闭\' }\n },\n setLevelColor,\n openViewFormPage\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034537935253577730, NULL, 1, '2026-03-19 15:50:18', 100, 1, '2026-03-23 11:45:28', 0, 2029007775825731586, 'js', '// 初始化验收工单表单\nuseFun.controlInit(\'FormView\', \'formView_84087\', {\n formId: \'2034879265162969089\',\n formType: \'edit\',\n handleType: \'returnData\',\n showType: \'dialog\',\n showButton: true,\n dataOption: { tableId: \'2029007775825731586\', dataId: \'\' },\n defaultData: { submitType: \'\' },\n enhanceData: {\n fieldConfig: { \'chuli\': { label: \'处理建议\', required: true, type: \'textarea\', rows: 4 } },\n formTitle: \'验收工单\', submitBtnText: \'提交处理\'\n },\n popOption: { title: \'验收工单\', width: \'40%\' },\n beforeClose: (type, done) => {\n if (type == \'submit\') {\n // 完全复刻截图样式的「操作成功」提示\n const successTip = document.createElement(\'div\');\n successTip.style.cssText = `\n position: fixed;\n top: 20px;\n left: 50%;\n transform: translateX(-50%);\n padding: 12px 32px;\n background: #f2f9f2; /* 极浅绿背景 */\n color: #52c41a; /* 深绿文字 */\n border-radius: 8px; /* 大圆角 */\n font-size: 16px;\n font-weight: 500;\n z-index: 9999;\n display: flex;\n align-items: center;\n gap: 12px;\n box-shadow: 0 2px 12px rgba(82, 196, 26, 0.15);\n border: 1px solid #e6f7e6;\n `;\n // 圆形对勾图标(和截图完全一致)\n successTip.innerHTML = `\n \n \n \n \n 操作成功\n `;\n document.body.appendChild(successTip);\n\n // 2秒后自动消失\n setTimeout(() => {\n successTip.remove();\n }, 2000);\n\n // 原有逻辑:刷新表格 + 重置级别颜色\n controlView_77755?.refresh();\n setTimeout(setLevelColor, 300);\n }\n done();\n }\n})\n\n// 严重级别颜色\nfunction setLevelColor() {\n setTimeout(() => {\n document.querySelectorAll(\'.low-table__2021105111153053697 .el-table__cell\').forEach(cell => {\n const t = cell.textContent.trim();\n const map = { \'低\': \'#52c41a\', \'中\': \'#fa8c16\', \'高\': \'#ff4d4f\' };\n if (map[t]) { cell.style.color = map[t]; cell.style.fontWeight = \'700\'; }\n })\n }, 200)\n}\n\n// ========================= 【核心】字典翻译函数 =========================\nfunction translateDict(row) {\n // 故障类型字典\n const faultTypeMap = { \'1\': \'系统故障\', \'2\': \'电气故障\', \'3\': \'机械故障\', \'4\': \'其他\' };\n // 严重级别字典\n const levelMap = { \'1\': \'一般\', \'2\': \'重要\', \'3\': \'严重\' };\n // 是否停机字典\n const isStopMap = { \'0\': \'未停机\', \'1\': \'已停机\' };\n // 处理状态字典\n const statusMap = { \'0\': \'待验收\', \'1\': \'已验收\' };\n\n const gdlxMap = { \'1\': \'自修\', \'2\': \'委外\' };\n\n const priorityMap = { \'1\': \'低\', \'2\': \'中\', \'3\': \'高\' };\n\n const fillingMap = { \'1\': \'是\', \'0\': \'否\' };\n return {\n ...row,\n\n // 故障类型\n fault_type: faultTypeMap[row.fault_type + \'\'] || row.fault_type || \'无\',\n // 严重级别\n level: levelMap[row.level + \'\'] || row.level || \'无\',\n // 是否停机\n is_stop: isStopMap[row.is_stop + \'\'] || row.is_stop || \'无\',\n // 处理状态\n processing_status: statusMap[row.processing_status + \'\'] || row.processing_status || \'无\',\n\n\n type: gdlxMap[row.type + \'\'] || row.type || \'无\',\n // 是否停机\n priority: priorityMap[row.priority + \'\'] || row.priority || \'无\',\n // 处理状态\n is_filing: fillingMap[row.is_filing + \'\'] || row.is_filing || \'无\'\n\n };\n}\n\n// 获取控件\nconst { controlView_77755, formView_84087 } = Vue.toRefs(rendControlData.value)\nconst h = Vue.h\nlet detailDialog = null;\n\n// ========================= 完美弹窗 =========================\nfunction openViewFormPage(row) {\n if (!row) return;\n // 自动翻译字典值\n const data = translateDict(row);\n\n const fields = [\n { label: \'工单编号\', field: \'number\' },\n { label: \'工单名称\', field: \'name\' },\n { label: \'设备\', field: \'dev_name\' },\n\n\n { label: \'故障类型\', field: \'fault_type\' },\n\n { label: \'优先级\', field: \'priority\' },\n { label: \'类型\', field: \'type\' },\n\n { label: \'完成时间\', field: \'completion_time\' },\n\n { label: \'验收时间\', field: \'acceptance_time\' },\n { label: \'状态\', field: \'processing_status\' },\n\n ];\n\n if (detailDialog) detailDialog.remove();\n const html = `\n
\n
\n
\n 详情\n \n
\n
\n
\n \n 基本信息\n
\n
\n ${fields.map(item => `\n
\n
${item.label}
\n
${data[item.field] || \'无\'}
\n
\n `).join(\'\')}\n
\n
\n
\n \n
\n
\n
\n `;\n\n detailDialog = document.createElement(\'div\');\n detailDialog.innerHTML = html;\n document.body.appendChild(detailDialog);\n\n detailDialog.querySelectorAll(\'.close-detail\').forEach(btn => {\n btn.onclick = () => { detailDialog.remove(); detailDialog = null; };\n });\n}\n\n// 故障编号点击\nfunction initTableColumnConfig() {\n useFun.setPropConfig(\'number\', {\n render: ({ row }) => {\n return h(\'span\', {\n style: { color: \'#1890ff\', cursor: \'pointer\', textDecoration: \'underline\', fontWeight: 500 },\n onClick: () => openViewFormPage(row)\n }, row.number || \'-\');\n }\n });\n}\n\n// 初始化\nsetTimeout(() => {\n setLevelColor();\n initTableColumnConfig();\n}, 600);\n\n// 返回方法\nreturn {\n handleBtn(row) {\n formView_84087.value.show = true //显示FormView\n const controlData = formView_84087.value.params //FormView的配置\n controlData.defaultData = {\n submitType: \'ys\',\n id: row.id,\n number: row.number,\n name: row.name\n }\n },\n handleCloseBtn(row) {\n formView_84087.value.show = true\n const d = formView_84087.value.params\n d.defaultData = { submitType: \'clbx\', id: row.id }\n d.popOption.title = \'关闭工单\'\n d.enhanceData = { fieldConfig: { chuli: { label: \'关闭原因\', required: true } }, formTitle: \'关闭工单\', submitBtnText: \'确认关闭\' }\n },\n setLevelColor,\n openViewFormPage\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034552587706499073, NULL, 1, '2026-03-19 16:48:32', 100, 1, '2026-03-19 17:03:34', 0, 2029461151661809665, 'scss', '// 表格样式 - 工单编号可点击\n.low-table__2029461151661809665 {\n // 方式1:第一列(工单编号列)\n td:first-child .cell {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n \n &:hover {\n color: #40a9ff !important;\n }\n }\n \n // 方式2:通过列名匹配\n td[class*=\"number\"] .cell,\n td[class*=\"prop-number\"] .cell {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n \n &:hover {\n color: #40a9ff !important;\n }\n }\n}\n\n// 通用链接样式类\n.link-type {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n \n &:hover {\n color: #40a9ff !important;\n }\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034560683128455169, NULL, 1, '2026-03-19 17:20:42', 100, 1, '2026-03-20 15:54:03', 0, 2021105111153053697, 'scss', '/* 表格:故障编号 链接样式 */\n.low-table__2021105111153053697 {\n // 故障编号链接样式(只对数据行)\n .el-table__body-wrapper .el-table__cell {\n &[class*=\"fault_number\"],\n &:first-child {\n .cell {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n font-weight: 500 !important;\n\n &:hover {\n color: #40a9ff !important;\n opacity: 0.8;\n }\n }\n }\n }\n\n /* ==============================================\n ✅ 正确逻辑:只隐藏【处理】按钮,其他按钮保留\n ============================================== */\n .el-table__body-wrapper .el-table__row {\n // 仅隐藏 文字是【处理】的按钮\n .el-button span:contains(\"处理\") {\n display: none !important;\n }\n \n // processing_status=0 时,显示【处理】按钮\n &[data-row-processing_status=\"0\"] .el-button span:contains(\"处理\") {\n display: inline-block !important;\n }\n }\n}\n\n/* 全局通用链接样式类 */\n.link-type {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034560706188738561, NULL, 1, '2026-03-19 17:20:47', 100, 1, '2026-03-19 17:25:17', 0, 2029007775825731586, 'scss', '// 表格样式 - 工单编号可点击\n.low-table__2029007775825731586 {\n\n\n // 通过列名匹配\n td[class*=\"number\"] .cell,\n td[class*=\"prop-number\"] .cell {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n }\n}\n\n// 通用链接样式类\n.link-type {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034560725738389506, NULL, 1, '2026-03-19 17:20:52', 100, 1, '2026-03-19 17:25:43', 0, 2029008606117568513, 'scss', '// 表格样式 - 工单编号可点击\n.low-table__2029127856085889025 {\n\n \n\n // 通过列名匹配\n td[class*=\"number\"] .cell,\n td[class*=\"prop-number\"] .cell {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n }\n}\n\n// 通用链接样式类\n.link-type {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034560753009754114, NULL, 1, '2026-03-19 17:20:58', 100, 1, '2026-03-19 17:26:13', 0, 2029127856085889025, 'scss', '// 表格样式 - 工单编号可点击\n.low-table__2029127856085889025 {\n\n\n // 方式2:通过列名匹配\n td[class*=\"number\"] .cell,\n td[class*=\"prop-number\"] .cell {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n }\n}\n\n// 通用链接样式类\n.link-type {\n color: #1890ff !important;\n cursor: pointer !important;\n text-decoration: underline !important;\n\n &:hover {\n color: #40a9ff !important;\n }\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034877489831526402, NULL, 1, '2026-03-20 14:19:34', 100, 1, '2026-03-23 11:45:12', 0, 2029127856085889025, 'js', '// 初始化处理报修表单\nuseFun.controlInit(\'FormView\', \'formView_84087\', {\n formId: \'2035239723183177730\',\n formType: \'edit\',\n handleType: \'returnData\',\n showType: \'dialog\',\n showButton: true,\n dataOption: { tableId: \'2029127856085889025\', dataId: \'\' },\n defaultData: { submitType: \'\' },\n enhanceData: {\n fieldConfig: { \'chuli\': { label: \'处理建议\', required: true, type: \'textarea\', rows: 4 } },\n formTitle: \'提交方案\', submitBtnText: \'提交处理\'\n },\n popOption: { title: \'提交方案\', width: \'40%\' },\n beforeClose: (type, done) => {\n if (type == \'submit\') {\n // 完全复刻截图样式的「操作成功」提示\n const successTip = document.createElement(\'div\');\n successTip.style.cssText = `\n position: fixed;\n top: 20px;\n left: 50%;\n transform: translateX(-50%);\n padding: 12px 32px;\n background: #f2f9f2; /* 极浅绿背景 */\n color: #52c41a; /* 深绿文字 */\n border-radius: 8px; /* 大圆角 */\n font-size: 16px;\n font-weight: 500;\n z-index: 9999;\n display: flex;\n align-items: center;\n gap: 12px;\n box-shadow: 0 2px 12px rgba(82, 196, 26, 0.15);\n border: 1px solid #e6f7e6;\n `;\n // 圆形对勾图标(和截图完全一致)\n successTip.innerHTML = `\n \n \n \n \n 操作成功\n `;\n document.body.appendChild(successTip);\n\n // 2秒后自动消失\n setTimeout(() => {\n successTip.remove();\n }, 2000);\n\n // 原有逻辑:刷新表格 + 重置级别颜色\n controlView_77755?.refresh();\n setTimeout(setLevelColor, 300);\n }\n done();\n }\n})\n\n// 严重级别颜色\nfunction setLevelColor() {\n setTimeout(() => {\n document.querySelectorAll(\'.low-table__2021105111153053697 .el-table__cell\').forEach(cell => {\n const t = cell.textContent.trim();\n const map = { \'低\': \'#52c41a\', \'中\': \'#fa8c16\', \'高\': \'#ff4d4f\' };\n if (map[t]) { cell.style.color = map[t]; cell.style.fontWeight = \'700\'; }\n })\n }, 200)\n}\n\n// ========================= 【核心】字典翻译函数 =========================\nfunction translateDict(row) {\n // 故障类型字典\n const faultTypeMap = { \'1\': \'系统故障\', \'2\': \'电气故障\', \'3\': \'机械故障\', \'4\': \'其他\' };\n // 严重级别字典\n const levelMap = { \'1\': \'一般\', \'2\': \'重要\', \'3\': \'严重\' };\n // 是否停机字典\n const isStopMap = { \'0\': \'未停机\', \'1\': \'已停机\' };\n // 处理状态字典\n const statusMap = { \'0\': \'待处理\', \'1\': \'已受理\', \'2\': \'已受理\', \'3\': \'已完成\' };\n\n const gdlxMap = { \'1\': \'自修\', \'2\': \'委外\' };\n\n const priorityMap = { \'1\': \'低\', \'2\': \'中\', \'3\': \'高\' };\n\n const fillingMap = { \'1\': \'是\', \'0\': \'否\' };\n return {\n ...row,\n\n // 故障类型\n fault_type: faultTypeMap[row.fault_type + \'\'] || row.fault_type || \'无\',\n // 严重级别\n level: levelMap[row.level + \'\'] || row.level || \'无\',\n // 是否停机\n is_stop: isStopMap[row.is_stop + \'\'] || row.is_stop || \'无\',\n // 处理状态\n processing_status: statusMap[row.processing_status + \'\'] || row.processing_status || \'无\',\n\n\n type: gdlxMap[row.type + \'\'] || row.type || \'无\',\n // 是否停机\n priority: priorityMap[row.priority + \'\'] || row.priority || \'无\',\n // 处理状态\n is_filing: fillingMap[row.is_filing + \'\'] || row.is_filing || \'无\'\n\n };\n}\n\n// 获取控件\nconst { controlView_77755, formView_84087 } = Vue.toRefs(rendControlData.value)\nconst h = Vue.h\nlet detailDialog = null;\n\n// ========================= 完美弹窗 =========================\nfunction openViewFormPage(row) {\n if (!row) return;\n // 自动翻译字典值\n const data = translateDict(row);\n\n const fields = [\n { label: \'方案编号\', field: \'number\' },\n { label: \'方案名称\', field: \'name\' },\n { label: \'所属产品\', field: \'dev_name\' },\n\n\n { label: \'故障类型\', field: \'fault_type\' },\n { label: \'说明\', field: \'fault_remark\' }\n ];\n\n if (detailDialog) detailDialog.remove();\n const html = `\n
\n
\n
\n 详情\n \n
\n
\n
\n \n 基本信息\n
\n
\n ${fields.map(item => `\n
\n
${item.label}
\n
${data[item.field] || \'无\'}
\n
\n `).join(\'\')}\n
\n
\n
\n \n
\n
\n
\n `;\n\n detailDialog = document.createElement(\'div\');\n detailDialog.innerHTML = html;\n document.body.appendChild(detailDialog);\n\n detailDialog.querySelectorAll(\'.close-detail\').forEach(btn => {\n btn.onclick = () => { detailDialog.remove(); detailDialog = null; };\n });\n}\n\n// 故障编号点击\nfunction initTableColumnConfig() {\n useFun.setPropConfig(\'number\', {\n render: ({ row }) => {\n return h(\'span\', {\n style: { color: \'#1890ff\', cursor: \'pointer\', textDecoration: \'underline\', fontWeight: 500 },\n onClick: () => openViewFormPage(row)\n }, row.number || \'-\');\n }\n });\n}\n\n// 初始化\nsetTimeout(() => {\n setLevelColor();\n initTableColumnConfig();\n}, 600);\n\n// 返回方法\nreturn {\n handleBtn(row) {\n formView_84087.value.show = true //显示FormView\n const controlData = formView_84087.value.params //FormView的配置\n controlData.defaultData = {\n submitType: \'ys\',\n id: row.id,\n number: row.number,\n name: row.name\n }\n },\n handleCloseBtn(row) {\n formView_84087.value.show = true\n const d = formView_84087.value.params\n d.defaultData = { submitType: \'clbx\', id: row.id }\n d.popOption.title = \'关闭工单\'\n d.enhanceData = { fieldConfig: { chuli: { label: \'关闭原因\', required: true } }, formTitle: \'关闭工单\', submitBtnText: \'确认关闭\' }\n },\n setLevelColor,\n openViewFormPage\n}'); -INSERT INTO `yunji_dbform_enhance_js` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `js_type`, `js_json`) VALUES (2034878293468561410, NULL, 1, '2026-03-20 14:22:46', 100, 1, '2026-03-23 11:45:19', 0, 2029008606117568513, 'js', '// 初始化验收工单表单\nuseFun.controlInit(\'FormView\', \'formView_84087\', {\n formId: \'2034879265162969089\',\n formType: \'edit\',\n handleType: \'returnData\',\n showType: \'dialog\',\n showButton: true,\n dataOption: { tableId: \'2029008606117568513\', dataId: \'\' },\n defaultData: { submitType: \'\' },\n enhanceData: {\n fieldConfig: { \'chuli\': { label: \'处理建议\', required: true, type: \'textarea\', rows: 4 } },\n formTitle: \'验收工单\', submitBtnText: \'提交处理\'\n },\n popOption: { title: \'验收工单\', width: \'40%\' },\n beforeClose: (type, done) => {\n if (type == \'submit\') {\n // 完全复刻截图样式的「操作成功」提示\n const successTip = document.createElement(\'div\');\n successTip.style.cssText = `\n position: fixed;\n top: 20px;\n left: 50%;\n transform: translateX(-50%);\n padding: 12px 32px;\n background: #f2f9f2; /* 极浅绿背景 */\n color: #52c41a; /* 深绿文字 */\n border-radius: 8px; /* 大圆角 */\n font-size: 16px;\n font-weight: 500;\n z-index: 9999;\n display: flex;\n align-items: center;\n gap: 12px;\n box-shadow: 0 2px 12px rgba(82, 196, 26, 0.15);\n border: 1px solid #e6f7e6;\n `;\n // 圆形对勾图标(和截图完全一致)\n successTip.innerHTML = `\n \n \n \n \n 操作成功\n `;\n document.body.appendChild(successTip);\n\n // 2秒后自动消失\n setTimeout(() => {\n successTip.remove();\n }, 2000);\n\n // 原有逻辑:刷新表格 + 重置级别颜色\n controlView_77755?.refresh();\n setTimeout(setLevelColor, 300);\n }\n done();\n }\n})\n\n// 严重级别颜色\nfunction setLevelColor() {\n setTimeout(() => {\n document.querySelectorAll(\'.low-table__2021105111153053697 .el-table__cell\').forEach(cell => {\n const t = cell.textContent.trim();\n const map = { \'低\': \'#52c41a\', \'中\': \'#fa8c16\', \'高\': \'#ff4d4f\' };\n if (map[t]) { cell.style.color = map[t]; cell.style.fontWeight = \'700\'; }\n })\n }, 200)\n}\n\n// ========================= 【核心】字典翻译函数 =========================\nfunction translateDict(row) {\n // 故障类型字典\n const faultTypeMap = { \'1\': \'系统故障\', \'2\': \'电气故障\', \'3\': \'机械故障\', \'4\': \'其他\' };\n // 严重级别字典\n const levelMap = { \'1\': \'一般\', \'2\': \'重要\', \'3\': \'严重\' };\n // 是否停机字典\n const isStopMap = { \'0\': \'未停机\', \'1\': \'已停机\' };\n // 处理状态字典\n const statusMap = { \'0\': \'待验收\', \'1\': \'已验收\' };\n\n const gdlxMap = { \'1\': \'自修\', \'2\': \'委外\' };\n\n const priorityMap = { \'1\': \'低\', \'2\': \'中\', \'3\': \'高\' };\n\n const fillingMap = { \'1\': \'是\', \'0\': \'否\' };\n return {\n ...row,\n\n // 故障类型\n fault_type: faultTypeMap[row.fault_type + \'\'] || row.fault_type || \'无\',\n // 严重级别\n level: levelMap[row.level + \'\'] || row.level || \'无\',\n // 是否停机\n is_stop: isStopMap[row.is_stop + \'\'] || row.is_stop || \'无\',\n // 处理状态\n processing_status: statusMap[row.processing_status + \'\'] || row.processing_status || \'无\',\n\n\n type: gdlxMap[row.type + \'\'] || row.type || \'无\',\n // 是否停机\n priority: priorityMap[row.priority + \'\'] || row.priority || \'无\',\n // 处理状态\n is_filing: fillingMap[row.is_filing + \'\'] || row.is_filing || \'无\'\n\n };\n}\n\n// 获取控件\nconst { controlView_77755, formView_84087 } = Vue.toRefs(rendControlData.value)\nconst h = Vue.h\nlet detailDialog = null;\n\n// ========================= 完美弹窗 =========================\nfunction openViewFormPage(row) {\n if (!row) return;\n // 自动翻译字典值\n const data = translateDict(row);\n\n const fields = [\n { label: \'工单编号\', field: \'number\' },\n { label: \'工单名称\', field: \'name\' },\n { label: \'设备\', field: \'dev_name\' },\n\n\n { label: \'故障类型\', field: \'fault_type\' },\n\n { label: \'优先级\', field: \'priority\' },\n { label: \'类型\', field: \'type\' },\n\n { label: \'完成时间\', field: \'completion_time\' },\n\n { label: \'验收时间\', field: \'acceptance_time\' },\n { label: \'状态\', field: \'processing_status\' },\n\n ];\n\n if (detailDialog) detailDialog.remove();\n const html = `\n
\n
\n
\n 详情\n \n
\n
\n
\n \n 基本信息\n
\n
\n ${fields.map(item => `\n
\n
${item.label}
\n
${data[item.field] || \'无\'}
\n
\n `).join(\'\')}\n
\n
\n
\n \n
\n
\n
\n `;\n\n detailDialog = document.createElement(\'div\');\n detailDialog.innerHTML = html;\n document.body.appendChild(detailDialog);\n\n detailDialog.querySelectorAll(\'.close-detail\').forEach(btn => {\n btn.onclick = () => { detailDialog.remove(); detailDialog = null; };\n });\n}\n\n// 故障编号点击\nfunction initTableColumnConfig() {\n useFun.setPropConfig(\'number\', {\n render: ({ row }) => {\n return h(\'span\', {\n style: { color: \'#1890ff\', cursor: \'pointer\', textDecoration: \'underline\', fontWeight: 500 },\n onClick: () => openViewFormPage(row)\n }, row.number || \'-\');\n }\n });\n}\n\n// 初始化\nsetTimeout(() => {\n setLevelColor();\n initTableColumnConfig();\n}, 600);\n\n// 返回方法\nreturn {\n // handleBtn(row) {\n // formView_84087.value.show = true\n // const d = formView_84087.value.params\n // d.defaultData = { submitType: \'clbx\', id: row.id }\n // d.popOption.title = \'验收工单\'\n // d.enhanceData = { fieldConfig: { chuli: { label: \'处理建议\', required: true } }, formTitle: \'验收工单\', submitBtnText: \'提交处理\' }\n // },\n handleBtn(row) {\n formView_84087.value.show = true //显示FormView\n const controlData = formView_84087.value.params //FormView的配置\n controlData.defaultData = {\n submitType: \'ys\',\n id: row.id,\n number: row.number,\n name: row.name\n }\n },\n handleCloseBtn(row) {\n formView_84087.value.show = true\n const d = formView_84087.value.params\n d.defaultData = { submitType: \'clbx\', id: row.id }\n d.popOption.title = \'关闭工单\'\n d.enhanceData = { fieldConfig: { chuli: { label: \'关闭原因\', required: true } }, formTitle: \'关闭工单\', submitBtnText: \'确认关闭\' }\n },\n setLevelColor,\n openViewFormPage\n}'); - -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2034535483884216322, NULL, 1, '2026-03-19 15:40:34', 100, 1, '2026-03-20 16:22:06', 0, 2029461151661809665, 'list', 'select * FROM dev_gzbx_wxgd order by update_time desc', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2034515457328316418, NULL, 1, '2026-03-19 14:20:59', 100, 1, '2026-03-20 08:27:20', 0, 2021105111153053697, 'list', 'SELECT\r\n a.* ,b.number as gd_number\r\nFROM\r\n dev_gzbx a LEFT JOIN dev_gzbx_wxgd b on a.id=b.gzbx_id\r\nWHERE\r\n a.is_deleted = 0 \r\nORDER BY\r\n a.update_time DESC', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029399519436238850, NULL, 1, '2026-03-05 11:32:05', 100, 1, '2026-03-05 14:48:46', 1, 2029399051121225730, 'list', 'select * from dev_gzbx_wxgd where dev_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029388809331372033, NULL, 1, '2026-03-05 10:49:31', 100, NULL, NULL, 0, 2029386195797635073, 'list', 'select * from by_management_gd where by_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029223050475053057, NULL, 1, '2026-03-04 23:50:51', 100, NULL, NULL, 0, 2029207451715850241, 'list', 'select * from by_management_ys where by_status = 4;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029222848926162946, NULL, 1, '2026-03-04 23:50:03', 100, NULL, NULL, 0, 2029207118600032257, 'list', 'select * from by_management_jl where by_status = 3;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029222722065244161, NULL, 1, '2026-03-04 23:49:33', 100, NULL, NULL, 0, 2029206107600801794, 'list', 'select * from by_management_fa where by_status = 2;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029222607372001282, NULL, 1, '2026-03-04 23:49:05', 100, NULL, NULL, 1, 2029221664664428545, 'list', 'select * from by_management_gd where by_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029173664818753538, NULL, 1, '2026-03-04 20:34:37', 100, NULL, NULL, 1, 2029007775825731586, 'edit', 'select * from dev_gzbx_wxjl where dev_status = 3;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029173478293860354, NULL, 1, '2026-03-04 20:33:52', 100, NULL, NULL, 1, 2029127856085889025, 'edit', 'select * from dev_gzbx_wxfa where dev_status = 2;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029173300270821377, NULL, 1, '2026-03-04 20:33:10', 100, NULL, NULL, 1, 2029132210440335361, 'list', 'select * from dev_gzbx_wxgd where dev_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029139668198010881, NULL, 1, '2026-03-04 18:19:31', 100, NULL, NULL, 1, 2029132210440335361, 'edit', 'select * from dev_gzbx_wxgd where dev_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029132905046437890, NULL, 1, '2026-03-04 17:52:39', 100, 1, '2026-03-04 18:15:29', 1, 2029132210440335361, 'list', 'select * from dev_gzbx_wxgd where dev_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029132743179857922, NULL, 1, '2026-03-04 17:52:00', 100, 1, '2026-03-04 18:15:13', 1, 2029127856085889025, 'list', 'select * from dev_gzbx_wxfa where dev_status = 2;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029025633452462081, NULL, 1, '2026-03-04 10:46:23', 100, 1, '2026-03-21 14:39:06', 0, 2029008606117568513, 'list', 'select * from dev_gzbx_wxgd where dev_status in (2,3) order by update_time desc;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029025521623928834, NULL, 1, '2026-03-04 10:45:56', 100, 1, '2026-03-21 14:39:15', 0, 2029007775825731586, 'list', 'select * from dev_gzbx_wxgd where dev_status in (2,3) order by update_time desc;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029025434457903105, NULL, 1, '2026-03-04 10:45:36', 100, NULL, NULL, 1, 2029007171598491650, 'list', 'select * from dev_gzbx_wxfa where dev_status = 2;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2029014172634259458, NULL, 1, '2026-03-04 10:00:51', 100, 1, '2026-03-04 10:55:01', 1, 2028750087892041730, 'list', 'select * from dev_gzbx_wxgd where dev_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2028785320553177090, NULL, 1, '2026-03-03 18:51:28', 100, 1, '2026-03-03 18:52:50', 1, 2021105111153053697, 'list', 'select * from dev_gzbx where dev_status = 0;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2028784504626831362, NULL, 1, '2026-03-03 18:48:14', 100, 1, '2026-03-04 09:54:03', 1, 2028750087892041730, 'list', 'select * from dev_gzbx_wxgd left join dev_gzbx on dev_gzbx_wxgd.gzbx_id=dev_gzbx.tenant_id where dev_gzbx_wxgd.dev_status = 1;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2028782550605455362, NULL, 1, '2026-03-03 18:40:28', 100, NULL, NULL, 1, 2021105111153053697, 'list', 'select(1) from dev_gzbx where dev_status = 0;', '', '0', 1, 'Y'); -INSERT INTO `yunji_dbform_enhance_sql` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `button_code`, `execute_sql`, `remark`, `list_result_handle_type`, `sort`, `active_status`) VALUES (2028782029379297281, NULL, 1, '2026-03-03 18:38:23', 100, NULL, NULL, 1, 2028750087892041730, 'detail', 'select(1) from dev_gzbx where dev_status = 0;', '', '0', 1, 'Y'); - - -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619777, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619778, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_code', '设备编号', 128, 0, '', 'String', '', 'N', 'N', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619779, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_name', '设备名称', 128, 0, '', 'String', '', 'N', 'N', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619780, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_type', '设备类型', 128, 0, '', 'String', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619781, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_xh', '设备型号', 128, 0, '', 'String', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619782, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_dept', '所属部门', 128, 0, '', 'String', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619783, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_zzdw', '制造单位', 128, 0, '', 'String', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619784, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_ccrq', '出厂日期', 128, 0, '', 'String', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619785, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_qyrq', '启用日期', 128, 0, '', 'String', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619786, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gl', '设备功率', 128, 0, '', 'String', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619787, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_azwz', '安装位置', 128, 0, '', 'String', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619788, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gdzcbm', '固定资产编码', 128, 0, '', 'String', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619789, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_tp', '设备图片', 128, 0, '', 'String', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619790, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619791, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619792, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619793, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619794, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619795, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 19, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2020794743180619796, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 20, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191042, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191043, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'fault_number', '故障编号', 128, 0, '', 'String', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191044, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'name', '故障名称', 128, 0, '', 'String', '', 'N', 'Y', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191045, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_type', '设备类型', 128, 0, '', 'String', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191046, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_name', '设备名称', 128, 0, '', 'String', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191047, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_no', '设备编号', 128, 0, '', 'String', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191048, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'type', '故障类型', 128, 0, '', 'String', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191049, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'remark', '故障描述', 128, 0, '', 'String', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191050, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'level', '严重级别', 128, 0, '', 'String', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191051, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_stop', '是否已停机', 1, 0, '', 'Integer', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191052, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'reporter', '上报人', 128, 0, '', 'BigInt', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191053, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'phone_number', '手机号码', 12, 0, '', 'BigInt', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191054, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191055, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191056, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191057, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 19, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191058, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 20, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191059, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 21, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2021105111199191060, 0, 1, '2026-02-10 14:13:03', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 22, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2028733401986052098, NULL, 1, '2026-03-03 15:25:10', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_status', '维修状态', 0, 0, '0', 'Integer', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840449, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840451, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_status', '维修状态', 2, 0, '', 'Integer', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840452, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840453, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840454, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840455, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840456, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840457, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029007775892840458, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094466, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094469, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094470, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094471, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094472, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094473, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094474, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029008606172094475, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029075207823110146, NULL, 1, '2026-03-04 14:03:23', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_id', '关联主键', 128, 0, '', 'BigInt', '', 'N', 'Y', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234625, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzbh', '故障编号', 128, 0, '', 'String', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234626, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzmc', '故障名称', 128, 0, '', 'String', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234627, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_sblx', '设备类型', 128, 0, '', 'String', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234628, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_name', '设备名称', 128, 0, '', 'String', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234629, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzlx', '设备编号', 128, 0, '', 'String', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234630, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_ms', '故障类型', 128, 0, '', 'String', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234631, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_yzjb', '故障描述', 128, 0, '', 'String', '', 'N', 'Y', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234632, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_isstop', '严重级别', 128, 0, '', 'Integer', '', 'N', 'Y', 19, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234633, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sbr', '上报人', 128, 0, '', 'BigInt', '', 'N', 'Y', 20, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029122692478234634, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sjh', '手机号', 128, 0, '', 'BigInt', '', 'N', 'Y', 21, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029124632708739074, NULL, 1, '2026-03-04 17:19:46', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_no', '设备编号', NULL, 0, '', 'String', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609282, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609283, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609284, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609285, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609286, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609287, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609288, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029127856144609289, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143233, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_fabh', '方案编号', 128, 0, '', 'String', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143234, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_famc', '方案名称', 128, 0, '', 'String', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143235, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_type', '设备类型', 128, 0, '', 'Integer', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143236, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_name', '设备名称', 128, 0, '', 'String', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143237, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_no', '设备编号', 128, 0, '', 'String', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143238, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_type', '故障类型', 128, 0, '', 'Integer', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143239, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_remark', '说明', 128, 0, '', 'String', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143240, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'level', '严重级别', 128, 0, '', 'Integer', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143241, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_isstop', '故障级别', NULL, 0, '', 'Integer', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143242, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sbr', '上报人', 128, 0, '', 'BigInt', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143243, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sjh', '手机号', 128, 0, '', 'String', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143244, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_status', '维修状态', 128, 0, '', 'Integer', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029129070450143245, NULL, 1, '2026-03-04 17:37:24', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'gzbx_id', '关联id', 128, 0, '', 'BigInt', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918530, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918531, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918532, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918533, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918534, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 12, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918535, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918536, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2029461151728918537, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034068397726736386, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', '处理状态', 0, 0, '0', 'Integer', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034074394323165186, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', '处理状态', 0, 0, '0', 'Integer', '', 'N', 'N', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034075626735509505, NULL, 1, '2026-03-18 09:13:15', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', '处理状态', 0, 0, '0', 'Integer', '', 'N', 'N', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034076035382353921, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', '处理状态', 0, 0, '0', 'Integer', '', 'N', 'N', 22, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034082968961130497, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', '工单名称', 500, 0, '', 'String', '', 'N', 'N', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034082968961130498, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', '故障类型', 128, 0, '', 'String', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034082968961130499, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', '设备编号', 128, 0, '', 'String', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034082968961130500, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', '设备', 128, 0, '', 'String', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034082968961130501, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', '优先级', 128, 0, '', 'String', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034082968961130502, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', '类型', 128, 0, '', 'String', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034083728507641857, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', '工单编号', 128, 0, '', 'String', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034085310519418881, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', '故障报修id', 128, 0, '', 'String', '', 'N', 'N', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418177, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', '故障报修id', 128, 0, '', 'BigInt', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418178, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', '处理状态', 128, 0, '', 'Integer', '', 'N', 'Y', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418179, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', '工单名称', 128, 0, '', 'String', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418180, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', '故障类型', 128, 0, '', 'Integer', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418181, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', '设备编号', 128, 0, '', 'String', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418182, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', '设备名称', 128, 0, '', 'String', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418183, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', '优先级', 128, 0, '', 'String', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418184, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', '工单类型', 128, 0, '', 'Integer', '', 'N', 'Y', 19, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418185, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', '工单编号', 128, 0, '', 'String', '', 'N', 'Y', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418186, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', '故障描述', 128, 0, '', 'String', '', 'N', 'Y', 20, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418187, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', '设备类型', 128, 0, '', 'Integer', '', 'N', 'Y', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418188, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', '维修人员', 128, 0, '', 'BigInt', '', 'N', 'Y', 22, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418189, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', '是否停机', 128, 0, '', 'Integer', '', 'N', 'Y', 23, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418190, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', '是否备案', 128, 0, '', 'Integer', '', 'N', 'Y', 24, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418191, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', '上报人', 128, 0, '', 'BigInt', '', 'N', 'Y', 26, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418192, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', '手机号', 128, 0, '', 'String', '', 'N', 'Y', 27, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034128712426418193, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', '处理状态', 128, 0, '', 'Integer', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034151627792412673, NULL, 1, '2026-03-18 14:15:15', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', '严重级别', 128, 0, '', 'Integer', '', 'N', 'Y', 21, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034166437842087937, NULL, 1, '2026-03-18 15:14:06', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', '完成时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 28, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572930, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', '主键', 128, 0, '', 'BigInt', '', 'Y', 'N', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572931, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', '方案id', 128, 0, '', 'BigInt', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572932, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', '步骤', 128, 0, '', 'String', '', 'N', 'Y', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572933, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', '租户编号', 128, 0, '', 'BigInt', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572934, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', '创建人', 128, 0, '', 'BigInt', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572935, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', '创建时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572936, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', '创建部门id', 128, 0, '', 'BigInt', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572937, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', '更新人', 128, 0, '', 'BigInt', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572938, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', '更新时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034169587336572939, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', '是否删除', 2, 0, '0', 'Integer', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034174768182743041, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', '方案名称', 128, 0, '', 'String', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034174768182743042, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', '方案编号', 128, 0, '', 'String', '', 'N', 'Y', 1, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685442, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', '工单编号', 128, 0, '', 'String', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685443, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', '工单名称', 128, 0, '', 'String', '', 'N', 'Y', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685444, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', '设备', 128, 0, '', 'String', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685445, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', '故障类型', 128, 0, '', 'Integer', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685446, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', '优先级', 128, 0, '', 'String', '', 'N', 'Y', 6, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685447, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', '类型', 128, 0, '', 'Integer', '', 'N', 'Y', 7, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685448, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', '完成时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 8, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685449, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', '验收时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 9, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685450, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', '状态', 128, 0, '', 'Integer', '', 'N', 'Y', 10, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034186679066685451, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', '维修人', 128, 0, '', 'BigInt', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980481, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', '工单编号', 128, 0, '', 'String', '', 'N', 'Y', 2, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980482, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', '工单名称', 128, 0, '', 'String', '', 'N', 'Y', 3, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980483, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', '设备', 128, 0, '', 'String', '', 'N', 'Y', 4, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980484, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', '故障类型', 128, 0, '', 'Integer', '', 'N', 'Y', 5, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980485, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', '优先级', 128, 0, '', 'String', '', 'N', 'Y', 13, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980486, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', '类型', 128, 0, '', 'Integer', '', 'N', 'Y', 14, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980487, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', '完成时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 15, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980488, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', '验收时间', 128, 0, '', 'DateTime', '', 'N', 'Y', 16, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980489, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', '状态', 128, 0, '', 'Integer', '', 'N', 'Y', 17, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034189971112980490, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', '维修人员', 128, 0, '', 'BigInt', '', 'N', 'Y', 18, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034517340512129026, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', '上报人', 128, 0, '', 'String', '', 'N', 'Y', 11, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034520903506276354, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', '上报人', 128, 0, '', 'String', '', 'N', 'Y', 25, 'Y'); -INSERT INTO `yunji_dbform_field` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `field_name`, `field_len`, `field_point_len`, `field_default_val`, `field_type`, `field_remark`, `is_primary_key`, `is_null`, `sort_num`, `is_db`) VALUES (2034787504478515201, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', '工单编号', 128, 0, '', 'String', '', 'N', 'Y', 23, 'N'); - - - -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723586, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723587, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_code', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723588, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723589, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_type', 'dict', 'device_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723590, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_xh', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723591, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723592, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_zzdw', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723593, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_ccrq', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723594, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_qyrq', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723595, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gl', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723596, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_azwz', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723597, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gdzcbm', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723598, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_tp', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723599, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723600, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723601, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723602, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723603, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723604, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2020794743398723605, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351810, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351811, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'fault_number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351812, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351813, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_type', 'dict', 'device_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351814, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_name', 'table', 'dev_code', '2020794743126093825', 'dev_name', 'dev_code,dev_name,dev_type', '{dicText}({dicCode})', '\nvar devType = document.querySelector(\'[data-field=\"dev_type\"] select\')?.value || \'\';\nreturn {\n type: devType\n};'); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351815, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_no', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351816, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'type', 'dict', 'wxgl_gzlx', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351817, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'remark', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351818, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'level', 'dict', 'wxgl_yzjb', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351819, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_stop', 'dict', 'is_shut_down', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351820, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'reporter', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351821, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'phone_number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351822, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351823, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351824, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351825, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351826, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351827, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2021105111375351828, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2028733402309013505, NULL, 1, '2026-03-03 15:25:10', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_status', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148692994, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148692996, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_status', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148692997, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148692998, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148692999, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148693000, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148693001, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148693002, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029007776148693003, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226753, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226756, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226757, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226758, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226759, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226760, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226761, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029008606369226762, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029075208024436737, NULL, 1, '2026-03-04 14:03:23', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281473, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzbh', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281474, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzmc', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281475, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_sblx', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281476, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281477, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzlx', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281478, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_ms', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281479, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_yzjb', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281480, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_isstop', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281481, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sbr', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029122692738281482, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sjh', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029124632972980226, NULL, 1, '2026-03-04 17:19:46', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_no', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741570, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741571, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741572, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741573, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741574, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741575, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741576, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029127856341741577, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498305, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_fabh', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498306, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_famc', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498307, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_type', 'dict', 'device_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498308, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498309, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_no', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498310, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_type', 'dict', 'wxgl_gzlx', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498311, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_remark', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498312, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'level', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498313, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_isstop', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498314, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sbr', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498315, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sjh', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498316, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_status', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029129070630498317, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'gzbx_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245121, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245122, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245123, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245124, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245125, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245126, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245127, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2029461151930245128, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034068398058086401, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', 'dict', 'fault_repair_status', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034074394583212034, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034075627062665218, NULL, 1, '2026-03-18 09:13:15', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034076035650789377, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034082969221177346, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034082969221177347, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034082969221177348, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034082969221177349, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034082969221177350, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034082969221177351, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034083728704774146, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034085310720745474, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488449, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488450, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', 'dict', 'fault_repair_status', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488451, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488452, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', 'dict', 'wxgl_gzlx', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488453, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488454, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488455, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', 'dict', 'fault_priority_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488456, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', 'dict', 'faul_order_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488457, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488458, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488459, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', 'dict', 'device_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488460, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488461, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', 'dict', 'infra_boolean_integer', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488462, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', 'dict', 'infra_boolean_integer', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488463, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488464, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034128712816488465, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', 'dict', 'fault_repair_status', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034151627989544961, NULL, 1, '2026-03-18 14:15:15', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', 'dict', 'wxgl_yzjb', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034166438102134786, NULL, 1, '2026-03-18 15:14:06', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510914, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510915, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510916, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510917, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510918, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510919, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510920, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510921, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510922, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034169587529510923, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034174768438595585, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034174768438595586, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623425, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623426, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623427, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623428, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', 'dict', 'wxgl_gzlx', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623429, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', 'dict', 'fault_priority_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623430, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', 'dict', 'faul_order_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623431, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623432, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623433, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', 'dict', 'maintenance_status', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034186679259623434, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833026, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833027, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833028, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833029, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', 'dict', 'wxgl_gzlx', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833030, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', 'dict', 'fault_priority_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833031, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', 'dict', 'faul_order_type', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833032, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833033, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833034, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', 'dict', 'maintenance_status', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034189971368833035, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034517340948336641, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034520903976038401, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', '', '', '', '', '', '', ''); -INSERT INTO `yunji_dbform_field_dict` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `dict_type`, `dict_code`, `dict_table`, `dict_text`, `dict_table_column`, `dict_text_formatter`, `dict_table_search`) VALUES (2034787504801476610, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', '', '', '', '', '', '', ''); - - - -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034787504931500034, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034520904181559298, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034517341078360066, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913418, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913417, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913416, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913415, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913414, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913413, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913412, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913411, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913410, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034189971456913409, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144330, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144329, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144328, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144327, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144326, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144325, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144324, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144323, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144322, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034186679465144321, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034174768568619010, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034174768568619009, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619787, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619786, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619785, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619784, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619783, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619782, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619781, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619780, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619779, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034169587596619778, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', 'N', 'N', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034166438165049346, NULL, 1, '2026-03-18 15:14:07', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034151628119568386, NULL, 1, '2026-03-18 14:15:16', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620753, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620752, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620751, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620750, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620749, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620748, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620747, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620746, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620745, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620744, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620743, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620742, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620741, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620740, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620739, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620738, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034128713013620737, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034085310783660033, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034083728771883009, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034082969288286215, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034082969288286214, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034082969288286213, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034082969288286212, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034082969288286211, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034082969288286210, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034076035713703938, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034075627125579777, NULL, 1, '2026-03-18 09:13:15', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034074394646126594, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', 'Y', 'Y', '', ''); -INSERT INTO `yunji_dbform_field_export` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_import`, `is_export`, `import_example_txt`, `is_import_duplicate`) VALUES (2034068398251024385, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', 'Y', 'Y', '', ''); - - - -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993217, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993218, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_code', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993219, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993220, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993221, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_xh', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993222, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993223, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_zzdw', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993224, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_ccrq', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993225, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_qyrq', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993226, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gl', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993227, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_azwz', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993228, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gdzcbm', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993229, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_tp', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993230, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993231, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993232, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993233, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993234, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993235, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2020794743641993236, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010049, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010050, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'fault_number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010051, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010052, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010053, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010054, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_no', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010055, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010056, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'remark', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010057, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'level', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010058, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_stop', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010059, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'reporter', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010060, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'phone_number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010061, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010062, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010063, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010064, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010065, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010066, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2021105111627010067, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2028733402569060354, NULL, 1, '2026-03-03 15:25:10', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825281, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825283, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825284, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825285, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825286, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825287, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825288, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825289, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029007776345825290, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250178, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250181, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250182, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250183, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250184, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250185, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250186, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029008606499250187, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029075208158654466, NULL, 1, '2026-03-04 14:03:23', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413761, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzbh', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413762, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzmc', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413763, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_sblx', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413764, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413765, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzlx', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413766, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_ms', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413767, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_yzjb', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413768, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_isstop', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413769, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sbr', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029122692935413770, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sjh', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029124633170112514, NULL, 1, '2026-03-04 17:19:47', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_no', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656145, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656146, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656147, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656148, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656149, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656150, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656151, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029127856404656152, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213505, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_fabh', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213506, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_famc', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213507, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213508, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213509, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_no', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213510, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213511, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_remark', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213512, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'level', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213513, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_isstop', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213514, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sbr', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213515, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sjh', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213516, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029129070840213517, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'gzbx_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354000, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354001, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354002, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354003, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354004, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354005, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354006, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2029461151997354007, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034068398318133250, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034074394709041154, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034075627255603202, NULL, 1, '2026-03-18 09:13:15', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034076035780812801, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034082969418309634, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034082969418309635, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034082969418309636, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034082969418309637, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034082969418309638, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034082969418309639, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034083728843186178, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034085310917877761, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753026, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753027, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753028, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753029, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753030, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753031, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753032, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753033, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753034, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753035, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753036, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753037, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753038, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753039, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753040, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753041, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034128713210753042, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034151628190871554, NULL, 1, '2026-03-18 14:15:16', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034166438232158209, NULL, 1, '2026-03-18 15:14:07', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534337, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534338, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', 'dev_gzbx_wxfa', 'id'); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534339, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534340, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534341, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534342, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534343, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534344, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534345, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034169587659534346, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034174768635727873, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034174768635727874, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973441, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973442, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973443, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973444, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973445, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973446, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973447, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973448, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973449, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034186679590973450, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965313, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965314, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965315, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965316, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965317, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965318, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965319, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965320, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965321, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034189971565965322, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034517341229355009, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034520904349331458, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', '', ''); -INSERT INTO `yunji_dbform_field_foreignkey` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `main_table`, `main_field`) VALUES (2034787505002803202, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', '', ''); - - - - -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743960760322, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954626, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_code', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954627, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_name', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954628, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_type', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954629, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_xh', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954630, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954631, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_zzdw', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954632, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_ccrq', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954633, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_qyrq', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954634, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gl', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954635, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_azwz', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954636, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gdzcbm', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954637, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_tp', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954638, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954639, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954640, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954641, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954642, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954643, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2020794743964954644, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142338, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142339, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'fault_number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142340, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'name', 'N', 'Y', 'LIKE', 'return {\n option_str:`return {\n \"searchLabelWidth\":70,\n \"searchClearable\":undefined,\n \"searchPlaceholder\":\'请输入名称\',\n \"searchType\":\'input\',\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142341, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142342, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142343, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_no', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142344, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142345, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'remark', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142346, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'level', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142347, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_stop', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142348, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'reporter', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142349, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'phone_number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142350, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142351, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142352, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_time', 'Y', 'Y', 'RANGE', 'return {\n option_str:`return {\n \"searchRange\":true,\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142353, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142354, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142355, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2021105111824142356, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2028733403030433794, NULL, 1, '2026-03-03 15:25:10', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066434, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066436, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066437, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066438, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066439, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066440, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066441, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066442, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029007776610066443, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662209, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662212, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662213, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662214, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_time', 'Y', 'Y', 'EQ', 'return {\n option_str:`return {\n \"searchPlaceholder\":\'请选择时间\',\n \"searchRange\":true,\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662215, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662216, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662217, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029008606637662218, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029075208288677890, NULL, 1, '2026-03-04 14:03:23', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740353, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzbh', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740354, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzmc', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740355, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_sblx', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740356, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740357, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzlx', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740358, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_ms', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740359, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_yzjb', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740360, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_isstop', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740361, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sbr', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029122693136740362, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sjh', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029124633300135938, NULL, 1, '2026-03-04 17:19:47', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_no', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959312, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959313, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959314, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959315, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959316, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_time', 'Y', 'Y', 'RANGE', 'return {\n option_str:`return {\n \"searchLabelWidth\":80,\n \"searchRange\":true,\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959317, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959318, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029127856475959319, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568577, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_fabh', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568578, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_famc', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568579, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568580, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568581, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_no', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568582, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568583, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_remark', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568584, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'level', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568585, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_isstop', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568586, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sbr', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568587, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sjh', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568588, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029129071020568589, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'gzbx_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377409, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377410, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377411, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377412, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377413, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_time', 'Y', 'Y', 'RANGE', 'return {\n option_str:`return {\n \"searchRange\":true,\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377414, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377415, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2029461152127377416, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034068398712397825, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034074394776150017, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034075627452735490, NULL, 1, '2026-03-18 09:13:16', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034076035973750785, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034082969548333057, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034082969548333058, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034082969548333059, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034082969548333060, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034082969548333061, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034082969548333062, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034083728969015298, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034085311115010050, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491650, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491651, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491652, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', 'N', 'Y', 'LIKE', 'return {\n option_str:`return {\n \"searchLabelWidth\":80,\n \"searchClearable\":true,\n \"searchPlaceholder\":\'请输入名称\',\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491653, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491654, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491655, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491656, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491657, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491658, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491659, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491660, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491661, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491662, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491663, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491664, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491665, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034128713550491666, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034151628442529793, NULL, 1, '2026-03-18 14:15:16', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034166438425096194, NULL, 1, '2026-03-18 15:14:07', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363458, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363459, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363460, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363461, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363462, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363463, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363464, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363465, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363466, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034169587785363467, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', 'Y', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034174768832860162, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', 'N', 'Y', 'LIKE', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034174768832860163, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129154, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129155, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', 'N', 'Y', 'LIKE', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129156, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', 'N', 'Y', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129157, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', 'N', 'Y', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129158, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129159, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129160, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129161, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129162, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034186679918129163, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903298, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903299, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', 'N', 'Y', 'LIKE', 'return {\n option_str:`return {\n \"searchLabelWidth\":80,\n \"searchClearable\":undefined,\n \"searchPlaceholder\":\'请输入名称\',\n}`,\n custom_str: `return {\n\n}`,\n }', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903300, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903301, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903302, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903303, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903304, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903305, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903306, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034189971758903307, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034517341501984770, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034520904672292865, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', 'N', 'N', 'EQ', '', ''); -INSERT INTO `yunji_dbform_field_query` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `query_is_db`, `query_is_web`, `query_mode`, `query_config`, `query_default_val`) VALUES (2034787505279627265, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', 'N', 'N', 'EQ', '', ''); - - - - -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462209, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462210, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_code', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462211, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462212, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462213, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_xh', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备型号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462214, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_dept', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'所属部门\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462215, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_zzdw', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'制造单位\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462216, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_ccrq', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'出厂日期\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462217, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_qyrq', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'启用日期\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462218, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gl', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备功率\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462219, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_azwz', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'安装位置\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462220, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gdzcbm', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'固定资产编码\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462221, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_tp', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'image', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备图片\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462222, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462223, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462224, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462225, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462226, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462227, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2020794743738462228, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479041, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479042, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'fault_number', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479043, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'name', 'Y', 'Y', 'Y', 'Y', 'N', 'Y', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479044, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_type', 'Y', 'Y', 'Y', 'Y', 'N', 'Y', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479045, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'Y', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479046, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_no', 'Y', 'Y', 'Y', 'Y', 'N', 'Y', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479047, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'type', 'Y', 'Y', 'Y', 'Y', 'N', 'Y', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479048, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'remark', 'Y', 'Y', 'Y', 'Y', 'N', 'Y', 'ueditor', '', '', '', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障描述\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479049, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'level', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'严重级别\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479050, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_stop', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否已停机\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479051, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'reporter', 'Y', 'N', 'N', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'上报人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479052, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'phone_number', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'手机号码\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479053, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479054, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479055, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479056, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479057, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479058, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2021105111723479059, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2028733402703278081, NULL, 1, '2026-03-03 15:25:10', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_status', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'switch', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'维修状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322753, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322755, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_status', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'维修状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322756, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322757, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322758, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322759, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322760, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322761, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029007776421322762, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359041, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359044, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359045, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359046, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359047, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359048, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359049, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029008606566359050, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029075208217374722, NULL, 1, '2026-03-04 14:03:23', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_id', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'关联主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631489, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzbh', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631490, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzmc', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631491, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_sblx', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631492, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631493, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzlx', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631494, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_ms', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631495, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_yzjb', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障描述\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631496, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_isstop', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'严重级别\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631497, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sbr', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'上报人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029122693069631498, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sjh', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'手机号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029124633233027073, NULL, 1, '2026-03-04 17:19:47', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_no', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959297, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959298, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959299, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959300, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959301, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959302, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959303, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029127856475959304, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933761, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_fabh', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'方案编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933762, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_famc', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'方案名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933763, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933764, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_name', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933765, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_no', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933766, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933767, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'fault_remark', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'ueditor', '', '', '', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'说明\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933768, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'level', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'严重级别\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933769, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_isstop', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障级别\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933770, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sbr', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'上报人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933771, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sjh', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'手机号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933772, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_status', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'switch', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'维修状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029129070898933773, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'gzbx_id', 'Y', 'N', 'N', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'关联id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462850, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462851, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462852, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462853, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462854, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_time', 'Y', 'Y', 'N', 'N', 'N', 'N', 'date', '', '150', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462855, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462856, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2029461152064462857, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034068398527848450, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'处理状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034074394709041156, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'处理状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034075627322712066, NULL, 1, '2026-03-18 09:13:16', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'处理状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034076035852115969, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'处理状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034082969481224193, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034082969481224194, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034082969481224195, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034082969481224196, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034082969481224197, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'优先级\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034082969481224198, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034083728906100738, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034085310980792322, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障报修id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691010, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', 'Y', 'N', 'N', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障报修id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691011, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', 'Y', 'N', 'N', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'处理状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691012, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691013, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691014, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691015, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691016, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'radio', '', '', '', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'优先级\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691017, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'radio', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691018, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691019, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'ueditor', '', '', '', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障描述\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691020, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691021, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'维修人员\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691022, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否停机\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691023, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否备案\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691024, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', 'Y', 'N', 'N', 'Y', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'上报人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691025, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'手机号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034128713403691026, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'处理状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034151628316700673, NULL, 1, '2026-03-18 14:15:16', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', 'Y', 'N', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'严重级别\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034166438295072770, NULL, 1, '2026-03-18 15:14:07', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '150', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'完成时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448898, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'主键\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448899, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', 'Y', 'N', 'N', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'方案id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448900, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'步骤\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448901, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'租户编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448902, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448903, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448904, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', 'Y', 'N', 'N', 'N', 'N', 'N', 'deptSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'创建部门id\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448905, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', 'Y', 'N', 'N', 'N', 'N', 'N', 'userSelect', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448906, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', 'Y', 'N', 'N', 'N', 'N', 'N', 'date', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'更新时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034169587722448907, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', 'Y', 'N', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'是否删除\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034174768698642434, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'方案名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034174768698642435, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '170', '', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'方案编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082306, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082307, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082308, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082309, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082310, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'优先级\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082311, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082312, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'date', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'完成时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082313, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'date', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'验收时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082314, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034186679658082315, NULL, 1, '2026-03-18 16:34:32', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'维修人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988738, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', 'Y', 'Y', 'Y', 'N', 'N', 'N', 'input', '', '170', '', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单编号\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988739, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单名称\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988740, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'设备\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988741, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'故障类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988742, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'优先级\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988743, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'类型\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988744, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'完成时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988745, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'验收时间\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988746, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'select', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'状态\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034189971695988747, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', 'Y', 'Y', 'Y', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'维修人员\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034517341342601217, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', 'Y', 'Y', 'N', 'N', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'上报人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034520904441606146, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'input', '', '', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'上报人\',\n //English\n \'en\': \'\',\n}'); -INSERT INTO `yunji_dbform_field_web` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `is_db_select`, `is_show_list`, `is_show_form`, `is_show_column`, `is_show_sort`, `is_required`, `control_type`, `controls_config`, `cell_width`, `cell_width_type`, `verify_config`, `format_config`, `label_i18n`) VALUES (2034787505170575362, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', 'Y', 'Y', 'N', 'Y', 'N', 'N', 'input', '', '170', 'min', '', '{\"formatType\":\"\",\"formatJson\":{\"sql\":{},\"java\":{},\"fun\":\"\"}}', 'return {\n //简体中文\n \'zh-CN\': \'工单编号\',\n //English\n \'en\': \'\',\n}'); - - - -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385025, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385026, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_code', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385027, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385028, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385029, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_xh', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385030, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385031, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_zzdw', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385032, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_ccrq', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385033, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_qyrq', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385034, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gl', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385035, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_azwz', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385036, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_gdzcbm', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385037, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'dev_tp', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385038, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385039, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385040, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385041, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385042, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385043, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 19); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2020794744384385044, NULL, 1, '2026-02-09 17:39:46', 100, NULL, '2026-03-23 10:08:55', 0, 2020794743126093825, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 20); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582850, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582851, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'fault_number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582852, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582853, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582854, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582855, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_no', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582856, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582857, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'remark', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582858, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'level', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582859, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_stop', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582860, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'reporter', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582861, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'phone_number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582862, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582863, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582864, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582865, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 19); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582866, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 20); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582867, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 21); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2021105111941582868, 0, 1, '2026-02-10 14:13:04', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 22); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2028733403290480641, NULL, 1, '2026-03-03 15:25:10', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'dev_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175297, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175299, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175300, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175301, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175302, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175303, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175304, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175305, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029007776677175306, NULL, 1, '2026-03-04 09:35:26', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576770, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576773, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576774, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576775, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576776, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576777, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576778, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029008606700576779, NULL, 1, '2026-03-04 09:38:44', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029075208347398145, NULL, 1, '2026-03-04 14:03:23', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569474, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzbh', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569475, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzmc', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569476, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_sblx', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569477, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569478, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_gzlx', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569479, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_ms', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569480, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_yzjb', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569481, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_isstop', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 19); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569482, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sbr', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 20); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029122693262569483, NULL, 1, '2026-03-04 17:12:04', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'gzbx_sjh', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 21); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029124633430159361, NULL, 1, '2026-03-04 17:19:47', 100, NULL, '2026-03-18 16:28:31', 1, 2029007775825731586, 'dev_no', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788418, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788419, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788420, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788421, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788422, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788423, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788424, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029127856601788425, NULL, 1, '2026-03-04 17:32:35', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677441, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_fabh', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677442, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:28:26', 1, 2029127856085889025, 'wxfa_famc', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677443, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677444, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677445, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'dev_no', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677446, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'fault_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677447, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'fault_remark', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677448, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'level', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677449, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_isstop', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677450, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sbr', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677451, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-18 15:36:02', 1, 2029127856085889025, 'gzbx_sjh', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677452, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'dev_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029129071087677453, NULL, 1, '2026-03-04 17:37:25', 100, NULL, '2026-03-23 09:58:25', 0, 2029127856085889025, 'gzbx_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486273, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486274, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486275, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486276, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486277, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 12); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486278, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486279, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2029461152194486280, NULL, 1, '2026-03-05 15:36:59', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034068398846615553, NULL, 1, '2026-03-18 08:44:32', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034074394906173442, NULL, 1, '2026-03-18 09:08:22', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034075627620507650, NULL, 1, '2026-03-18 09:13:16', 100, NULL, '2026-03-18 15:58:46', 1, 2029127856085889025, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034076036036665346, NULL, 1, '2026-03-18 09:14:53', 100, NULL, NULL, 1, 2029007775825731586, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 22); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034082969682550785, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gd_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034082969682550786, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_gzlx', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034082969682550787, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_no', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034082969682550788, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034082969682550789, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_yxj', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034082969682550790, NULL, 1, '2026-03-18 09:42:26', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034083729094844418, NULL, 1, '2026-03-18 09:45:27', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'wxgd_gdbh', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034085311190507521, NULL, 1, '2026-03-18 09:51:44', 100, NULL, '2026-03-18 09:51:56', 1, 2029461151661809665, 'gzbx_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761281, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'gzbx_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761282, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761283, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761284, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761285, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_no', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761286, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761287, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'priority', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761288, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 19); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761289, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761290, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'fault_remark', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 20); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761291, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761292, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'maintenance_person', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 22); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761293, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_top', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 23); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761294, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'is_filing', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 24); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761295, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'reporter', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 26); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761296, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'phone_number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 27); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034128713793761297, NULL, 1, '2026-03-18 12:44:12', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'dev_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034151628576747521, NULL, 1, '2026-03-18 14:15:16', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'level', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 21); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034166438563508225, NULL, 1, '2026-03-18 15:14:07', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'completion_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 28); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192578, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192579, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'plan_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192580, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'step', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192581, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'tenant_id', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192582, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192583, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192584, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'create_dept', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192585, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_user', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192586, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'update_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034169587911192587, NULL, 1, '2026-03-18 15:26:37', 100, NULL, '2026-03-18 15:50:45', 0, 2034169587269464065, 'is_deleted', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034174768962883586, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034174768962883587, NULL, 1, '2026-03-18 15:47:13', 100, NULL, '2026-03-23 09:58:24', 0, 2029127856085889025, 'number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 1); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958274, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958275, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958276, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958277, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'fault_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958278, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'priority', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 6); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958279, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 7); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958280, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'completion_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 8); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958281, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'acceptance_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 9); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958282, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 10); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034186680043958283, NULL, 1, '2026-03-18 16:34:33', 100, NULL, '2026-03-20 17:04:33', 0, 2029007775825731586, 'maintenance_perpon', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424194, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 2); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424195, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 3); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424196, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'dev_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 4); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424197, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'fault_type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 5); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424198, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'priority', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 13); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424199, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'type', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 14); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424200, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'completion_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 15); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424201, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'acceptance_time', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 16); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424202, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'processing_status', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 17); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034189971964424203, NULL, 1, '2026-03-18 16:47:37', 100, NULL, '2026-03-20 17:04:21', 0, 2029008606117568513, 'maintenance_perpon', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 18); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034517341720088578, NULL, 1, '2026-03-19 14:28:28', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'create_user_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 11); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034520904835870722, NULL, 1, '2026-03-19 14:42:38', 100, NULL, '2026-03-23 09:58:20', 0, 2029461151661809665, 'create_user_name', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 25); -INSERT INTO `yunji_dbform_summary` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `dbform_id`, `field_code`, `summary_type`, `summary_show`, `summary_sql`, `summary_label`, `summary_json`, `sort_num`) VALUES (2034787505472565249, NULL, 1, '2026-03-20 08:22:00', 100, NULL, '2026-03-23 12:00:15', 0, 2021105111153053697, 'gd_number', 'bottom', 'N', '', '', '{\"sqlType\":\"\",\"sqlValue\":\"\"}', 23); - -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2021105111153053697, 0, 1, '2026-02-10 14:13:03', 100, 1, '2026-03-23 12:00:15', 0, 'dev_gzbx', '维修管理-故障报修', 1, 1, 'NATIVE', 'multiple', 'N', 'N', '', 0, '', 'normal', NULL, 'default', 'default', '', 'none', 'normal', 1, 2, '', 'Y', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', '', 'page,initDataReq,dataAuth,authFalse', 'addBtn,editBtn,delBtn,batchDelBtn,importBtn,exportBtn', 'return {\n option_str:`return {\n \"title\":undefined,\n \"menuTitle\":\'操作\',\n \"menuWidth\":220,\n \"emptyText\":\'暂无数据\',\n \"searchLabelPosition\":\'left\',\n \"searchLabelWidth\":80,\n}`,\n custom_str: `return {\n\n}`,\n }', 'height,header,menu,index,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"Y\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"singleCardSpan\":\"\",\"expandShowNum\":null,\"expandMode\":\"\",\"searchStyle\":\"default\"}', 'update'); -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2020794743126093825, NULL, 1, '2026-02-09 17:39:46', 100, 1, '2026-03-23 10:08:55', 0, 'sys_device', '设备档案', 3, 1, 'NATIVE', 'multiple', 'Y', 'N', '', 0, '', 'normal', NULL, 'default', 'default', '', 'none', 'more', 1, 2, '', 'N', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', NULL, 'page,initDataReq,authFalse', 'addBtn,editBtn,viewBtn,delBtn,batchDelBtn,importBtn,exportBtn', '', 'height,header,menu,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"N\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"singleCardSpan\":\"\",\"expandShowNum\":null,\"expandMode\":\"\",\"searchStyle\":\"default\"}', 'update'); -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2029127856085889025, NULL, 1, '2026-03-04 17:32:35', 100, 1, '2026-03-23 09:58:24', 0, 'dev_gzbx_wxfa', '设备管理-维修方案', 3, 1, 'NATIVE', 'multiple', 'N', 'N', '', 0, '', 'normal', NULL, 'default', 'default', '', 'none', 'normal', 1, 2, 'dev_gzbx_plan_step', 'N', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', NULL, 'page,initDataReq,authFalse', 'editBtn,delBtn,batchDelBtn,importBtn,exportBtn', '', 'height,header,menu,index,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"N\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"singleCardSpan\":\"\",\"expandShowNum\":null,\"expandMode\":\"\",\"searchStyle\":\"default\"}', 'update'); -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2029461151661809665, NULL, 1, '2026-03-05 15:36:59', 100, 1, '2026-03-23 09:58:20', 0, 'dev_gzbx_wxgd', '维修管理-维修工单', 1, 1, 'NATIVE', 'multiple', 'N', 'N', '', 0, '', 'normal', NULL, 'default', 'default', '', 'none', 'normal', 1, 2, '', 'Y', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', NULL, 'page,initDataReq,authFalse', 'editBtn,delBtn,batchDelBtn,importBtn,exportBtn', '', 'height,header,menu,index,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"N\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"singleCardSpan\":\"\",\"expandShowNum\":null,\"expandMode\":\"\",\"searchStyle\":\"default\"}', 'update'); -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2029007775825731586, NULL, 1, '2026-03-04 09:35:26', 100, 1, '2026-03-20 17:04:33', 0, 'dev_gzbx_wxjl', '维修管理-维修记录', 1, 1, 'NATIVE', 'multiple', 'N', 'N', '', 0, '', 'normal', NULL, 'default', 'default', '', 'none', 'more', 1, 2, '', 'N', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', NULL, 'page,initDataReq,authFalse', '', '', 'height,header,menu,index,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"N\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"singleCardSpan\":\"\",\"expandShowNum\":null,\"expandMode\":\"\",\"searchStyle\":\"default\"}', 'update'); -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2029008606117568513, NULL, 1, '2026-03-04 09:38:44', 100, 1, '2026-03-20 17:04:21', 0, 'dev_gzbx_cjys', '维修管理-车间验收', 1, 1, 'NATIVE', 'multiple', 'N', 'N', '', 0, '', 'normal', NULL, 'default', 'default', '', 'none', 'more', 1, 2, '', 'Y', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', NULL, 'page,initDataReq,authFalse', 'batchDelBtn', '', 'height,header,menu,index,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"N\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"singleCardSpan\":\"\",\"expandShowNum\":null,\"expandMode\":\"\",\"searchStyle\":\"default\"}', 'update'); -INSERT INTO `yunji_dbform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `table_name`, `table_describe`, `table_type`, `table_classify`, `table_id_type`, `table_select`, `is_db_sync`, `is_des_form`, `sub_table_mapping`, `sub_table_sort`, `sub_table_title`, `theme_template`, `desform_web_id`, `tree_style`, `tree_mode`, `tree_label_field`, `tree_expand_btn`, `operate_menu_style`, `max_menu_num`, `form_style`, `sub_table_list_str`, `view_default_field`, `group_dbform_id`, `orderby_config`, `where_config`, `data_config`, `basic_function`, `basic_config`, `table_config`, `data_sources_config`, `web_config`, `table_style`, `import_duplicate_type`) VALUES (2034169587269464065, NULL, 1, '2026-03-18 15:26:37', 100, 1, '2026-03-18 15:50:45', 0, 'dev_gzbx_plan_step', '方案步骤', 4, 1, 'NATIVE', 'multiple', 'N', 'N', 'many', 1, '', 'normal', NULL, 'default', 'default', '', 'none', 'more', 1, 2, '', 'N', 1814537807121133570, '[{\"order\":\"desc\",\"column\":\"id\"}]', NULL, 'page,initDataReq,authFalse', 'addBtn,editBtn,viewBtn,delBtn,batchDelBtn,importBtn,exportBtn', '', 'height,header,menu,index,border,rollBottom', '', '{\"columnPersistence\":\"N\",\"selectAll\":\"N\",\"treeChildType\":\"default\"}', '{\"singleStyle\":\"default\",\"searchStyle\":\"default\"}', 'update'); - - - - - - - - -INSERT INTO `yunji_desform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `desform_name`, `desform_json`, `group_desform_id`, `is_open`, `is_template`, `is_hide`, `i18n_data`) VALUES (2035239723183177730, NULL, 1, '2026-03-21 14:18:58', 100, 1, '2026-03-23 11:39:00', 0, '维修管理-处理方案', '{\"jsEnhance\":\"return {\\n \\n}\\n\",\"scssEnhance\":\"\",\"labelPosition\":\"right\",\"labelSuffix\":\" \",\"labelWidth\":120,\"gutter\":20,\"menuBtn\":true,\"submitBtn\":true,\"submitText\":\"提交\",\"emptyBtn\":false,\"emptyText\":\"清空\",\"externalTitle\":\"\",\"menuPosition\":\"center\",\"size\":\"default\",\"isSubmitTable\":true,\"column\":{\"number\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"方案编号\",\"readonly\":true,\"clearable\":true,\"display\":true,\"span\":15,\"disabled\":true,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_5926793\"},\"name\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"方案名称\",\"readonly\":true,\"clearable\":true,\"display\":true,\"span\":14,\"disabled\":true,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_8104496\"},\"fields_6409320\":{\"type\":\"textarea\",\"controlType\":\"input\",\"label\":\"意见/建议\",\"readonly\":false,\"minRows\":3,\"maxRows\":5,\"display\":true,\"span\":24,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_6409320\"}},\"group\":[]}', NULL, 'N', 'N', 'N', '{\"fields_5926793\":\"return {\\n //简体中文\\n \'zh-CN\': \'方案编号\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_8104496\":\"return {\\n //简体中文\\n \'zh-CN\': \'方案名称\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_6409320\":\"return {\\n //简体中文\\n \'zh-CN\': \'意见/建议\',\\n //English\\n \'en\': \'\',\\n}\",\"config_submitBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'提交\',\\n //English\\n \'en\': \'\',\\n}\",\"config_emptyBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'清空\',\\n //English\\n \'en\': \'\',\\n}\",\"config_externalTitle\":\"return {\\n //简体中文\\n \'zh-CN\': \'\',\\n //English\\n \'en\': \'\',\\n}\"}'); -INSERT INTO `yunji_desform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `desform_name`, `desform_json`, `group_desform_id`, `is_open`, `is_template`, `is_hide`, `i18n_data`) VALUES (2034879265162969089, NULL, 1, '2026-03-20 14:26:38', 100, 1, '2026-03-23 11:28:42', 0, '维修管理-验收工单', '{\"jsEnhance\":\"return {\\n \\n}\\n\",\"scssEnhance\":\"\",\"labelPosition\":\"right\",\"labelSuffix\":\" \",\"labelWidth\":120,\"gutter\":20,\"menuBtn\":true,\"submitBtn\":true,\"submitText\":\"提交\",\"emptyBtn\":false,\"emptyText\":\"清空\",\"externalTitle\":\"\",\"menuPosition\":\"center\",\"size\":\"default\",\"isSubmitTable\":true,\"column\":{\"number\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"工单编号\",\"readonly\":true,\"clearable\":false,\"display\":true,\"span\":22,\"disabled\":false,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_9053417\",\"row\":false},\"name\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"工单名称\",\"readonly\":true,\"clearable\":true,\"display\":true,\"span\":22,\"disabled\":false,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_7375280\",\"labelTip\":\"\"},\"evaluate\":{\"type\":\"rate\",\"controlType\":\"rate\",\"label\":\"评价\",\"texts\":[],\"colors\":[],\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_2317295\",\"value\":3},\"remark\":{\"type\":\"textarea\",\"controlType\":\"input\",\"label\":\"意见/建议\",\"readonly\":false,\"minRows\":3,\"maxRows\":5,\"display\":true,\"span\":24,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_3006469\"}},\"group\":[]}', NULL, 'N', 'N', 'N', '{\"fields_9053417\":\"return {\\n //简体中文\\n \'zh-CN\': \'工单编号\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_7375280\":\"return {\\n //简体中文\\n \'zh-CN\': \'工单名称\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_2317295\":\"return {\\n //简体中文\\n \'zh-CN\': \'评价\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_3006469\":\"return {\\n //简体中文\\n \'zh-CN\': \'意见/建议\',\\n //English\\n \'en\': \'\',\\n}\",\"config_submitBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'提交\',\\n //English\\n \'en\': \'\',\\n}\",\"config_emptyBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'清空\',\\n //English\\n \'en\': \'\',\\n}\",\"config_externalTitle\":\"return {\\n //简体中文\\n \'zh-CN\': \'\',\\n //English\\n \'en\': \'\',\\n}\"}'); -INSERT INTO `yunji_desform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `desform_name`, `desform_json`, `group_desform_id`, `is_open`, `is_template`, `is_hide`, `i18n_data`) VALUES (2034878471818756097, NULL, 1, '2026-03-20 14:23:29', 100, 1, '2026-03-23 11:37:02', 0, '维修管理-处理工单', '{\"jsEnhance\":\"return {\\n \\n}\\n\",\"scssEnhance\":\"\",\"labelPosition\":\"right\",\"labelSuffix\":\" \",\"labelWidth\":120,\"gutter\":20,\"menuBtn\":true,\"submitBtn\":true,\"submitText\":\"提交\",\"emptyBtn\":false,\"emptyText\":\"清空\",\"externalTitle\":\"\",\"menuPosition\":\"center\",\"size\":\"default\",\"isSubmitTable\":true,\"column\":{\"number\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"工单编号\",\"readonly\":true,\"clearable\":true,\"display\":true,\"span\":16,\"disabled\":true,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_5461632\"},\"name\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"工单名称\",\"readonly\":true,\"clearable\":true,\"display\":true,\"span\":16,\"disabled\":true,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_8704115\"},\"fields_661541\":{\"type\":\"textarea\",\"controlType\":\"input\",\"label\":\"意见/建议\",\"readonly\":false,\"minRows\":3,\"maxRows\":5,\"display\":true,\"span\":24,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_661541\"}},\"group\":[]}', NULL, 'N', 'N', 'N', '{\"fields_5461632\":\"return {\\n //简体中文\\n \'zh-CN\': \'工单编号\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_8704115\":\"return {\\n //简体中文\\n \'zh-CN\': \'工单名称\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_661541\":\"return {\\n //简体中文\\n \'zh-CN\': \'意见/建议\',\\n //English\\n \'en\': \'\',\\n}\",\"config_submitBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'提交\',\\n //English\\n \'en\': \'\',\\n}\",\"config_emptyBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'清空\',\\n //English\\n \'en\': \'\',\\n}\",\"config_externalTitle\":\"return {\\n //简体中文\\n \'zh-CN\': \'\',\\n //English\\n \'en\': \'\',\\n}\"}'); -INSERT INTO `yunji_desform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `desform_name`, `desform_json`, `group_desform_id`, `is_open`, `is_template`, `is_hide`, `i18n_data`) VALUES (2034811779709190146, NULL, 1, '2026-03-20 09:58:28', 100, 1, '2026-03-20 10:03:16', 0, '故障报修-编辑表单', '{\"jsEnhance\":\"return {\\n \\n}\\n\",\"scssEnhance\":\"\",\"labelPosition\":\"right\",\"labelSuffix\":\" \",\"labelWidth\":120,\"gutter\":20,\"menuBtn\":true,\"submitBtn\":true,\"submitText\":\"提交\",\"emptyBtn\":false,\"emptyText\":\"清空\",\"externalTitle\":\"\",\"menuPosition\":\"center\",\"size\":\"default\",\"isSubmitTable\":true,\"column\":{\"fields_9654482\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"故障编号\",\"readonly\":false,\"clearable\":true,\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_9654482\"},\"fields_1929256\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"故障名称\",\"readonly\":false,\"clearable\":true,\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_1929256\"},\"fields_3954848\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"设备类型\",\"readonly\":false,\"clearable\":true,\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_3954848\"},\"fields_2097235\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"设备名称\",\"readonly\":false,\"clearable\":true,\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_2097235\"},\"fields_99142\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"设备编号\",\"readonly\":false,\"clearable\":true,\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_99142\"},\"fields_6374849\":{\"type\":\"select\",\"controlType\":\"select\",\"label\":\"故障类型\",\"clearable\":true,\"collapseTags\":true,\"maxCollapseTags\":1,\"dicType\":\"static\",\"staticDicData\":[{\"itemKey\":\"id_1\",\"label\":\"字典1\",\"value\":\"dic_1\"},{\"itemKey\":\"id_2\",\"label\":\"字典2\",\"value\":\"dic_2\"}],\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_6374849\",\"delDicValue\":[]},\"fields_3652365\":{\"type\":\"ueditor\",\"controlType\":\"noDefaule\",\"label\":\"故障描述\",\"rows\":3,\"display\":true,\"span\":24,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_3652365\"},\"fields_8403030\":{\"type\":\"select\",\"controlType\":\"select\",\"label\":\"严重级别\",\"clearable\":true,\"collapseTags\":true,\"maxCollapseTags\":1,\"dicType\":\"static\",\"staticDicData\":[{\"itemKey\":\"id_1\",\"label\":\"字典1\",\"value\":\"dic_1\"},{\"itemKey\":\"id_2\",\"label\":\"字典2\",\"value\":\"dic_2\"}],\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_8403030\",\"delDicValue\":[]},\"fields_6205752\":{\"type\":\"select\",\"controlType\":\"select\",\"label\":\"是否已停机\",\"clearable\":true,\"collapseTags\":true,\"maxCollapseTags\":1,\"dicType\":\"static\",\"staticDicData\":[{\"itemKey\":\"id_1\",\"label\":\"字典1\",\"value\":\"dic_1\"},{\"itemKey\":\"id_2\",\"label\":\"字典2\",\"value\":\"dic_2\"}],\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_6205752\",\"delDicValue\":[]},\"fields_6491525\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"手机号码\",\"readonly\":false,\"clearable\":true,\"display\":true,\"span\":12,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_6491525\"}},\"group\":[]}', NULL, 'N', 'N', 'N', '{\"fields_9654482\":\"return {\\n //简体中文\\n \'zh-CN\': \'故障编号\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_1929256\":\"return {\\n //简体中文\\n \'zh-CN\': \'故障名称\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_3954848\":\"return {\\n //简体中文\\n \'zh-CN\': \'设备类型\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_2097235\":\"return {\\n //简体中文\\n \'zh-CN\': \'设备名称\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_99142\":\"return {\\n //简体中文\\n \'zh-CN\': \'设备编号\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_6374849\":\"return {\\n //简体中文\\n \'zh-CN\': \'故障类型\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_3652365\":\"return {\\n //简体中文\\n \'zh-CN\': \'故障描述\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_8403030\":\"return {\\n //简体中文\\n \'zh-CN\': \'严重级别\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_6205752\":\"return {\\n //简体中文\\n \'zh-CN\': \'是否已停机\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_6491525\":\"return {\\n //简体中文\\n \'zh-CN\': \'手机号码\',\\n //English\\n \'en\': \'\',\\n}\",\"config_submitBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'提交\',\\n //English\\n \'en\': \'\',\\n}\",\"config_emptyBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'清空\',\\n //English\\n \'en\': \'\',\\n}\",\"config_externalTitle\":\"return {\\n //简体中文\\n \'zh-CN\': \'\',\\n //English\\n \'en\': \'\',\\n}\"}'); -INSERT INTO `yunji_desform` (`id`, `tenant_id`, `create_user`, `create_time`, `create_dept`, `update_user`, `update_time`, `is_deleted`, `desform_name`, `desform_json`, `group_desform_id`, `is_open`, `is_template`, `is_hide`, `i18n_data`) VALUES (2034431356751638529, NULL, 1, '2026-03-19 08:46:48', 100, 1, '2026-03-23 11:33:35', 0, '维修管理-处理报修', '{\"jsEnhance\":\"useFun.onMounted(() => {\\n setTimeout(() => {\\n const dialog = document.querySelector(\'.low-form__203443156751638529 .el-dialog\');\\n const header = document.querySelector(\'.low-form__203443156751638529 .el-dialog__header\');\\n const body = document.querySelector(\'.low-form__203443156751638529 .el-dialog__body\');\\n const footer = document.querySelector(\'.low-form__203443156751638529 .el-dialog__footer\');\\n const title = document.querySelector(\'.low-form__203443156751638529 .el-form-item__content\');\\n const submitBtn = document.querySelector(\'.low-form__203443156751638529 .el-button--primary\');\\n const cancelBtn = document.querySelector(\'.low-form__203443156751638529 .el-button--default\');\\n\\n if (dialog) dialog.style.cssText = \'border-radius: 10px !important; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12) !important; overflow: hidden !important;\';\\n if (header) header.style.cssText = \'background: #fafafa !important; border-bottom: 1px solid #e8e8e8 !important; padding: 16px 24px !important;\';\\n if (body) body.style.cssText = \'padding: 40px 32px !important; text-align: center !important;\';\\n if (footer) footer.style.cssText = \'background: #fafafa !important; border-top: 1px solid #e8e8e8 !important; padding: 16px 24px !important; text-align: right !important;\';\\n if (title) title.style.cssText = \'font-size: 22px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.5 !important;\';\\n if (submitBtn) submitBtn.style.cssText = \'padding: 10px 28px !imporuseFun.onMounted(() => {\\n setTimeout(() => {\\n const dialog = document.querySelector(\'.low-form__203443156751638529 .el-dialog\');\\n const header = document.querySelector(\'.low-form__203443156751638529 .el-dialog__header\');\\n const body = document.querySelector(\'.low-form__203443156751638529 .el-dialog__body\');\\n const footer = document.querySelector(\'.low-form__203443156751638529 .el-dialog__footer\');\\n const title = document.querySelector(\'.low-form__203443156751638529 .el-form-item__content\');\\n const submitBtn = document.querySelector(\'.low-form__203443156751638529 .el-button--primary\');\\n const cancelBtn = document.querySelector(\'.low-form__203443156751638529 .el-button--default\');\\n\\n if (dialog) dialog.style.cssText = \'border-radius: 10px !important; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12) !important; overflow: hidden !important;\';\\n if (header) header.style.cssText = \'background: #fafafa !important; border-bottom: 1px solid #e8e8e8 !important; padding: 16px 24px !important;\';\\n if (body) body.style.cssText = \'padding: 40px 32px !important; text-align: center !important;\';\\n if (footer) footer.style.cssText = \'background: #fafafa !important; border-top: 1px solid #e8e8e8 !important; padding: 16px 24px !important; text-align: right !important;\';\\n if (title) title.style.cssText = \'font-size: 22px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.5 !important;\';\\n if (submitBtn) submitBtn.style.cssText = \'padding: 10px 28px !important; border-radius: 6px !important; background: #1890ff !important; border-color: #1890ff !important;\';\\n if (cancelBtn) cancelBtn.style.cssText = \'padding: 10px 28px !important; border-radius: 6px !important; background: #f5f7fa !important; border-color: #e4e7ed !important; color: #606266 !important;\';\\n\\n // 可选:插入图标和辅助说明\\n if (body) {\\n const iconHtml = `\\n
\\n \\n \\n \\n \\n
\\n

处理后故障状态将更新为【已受理】

\\n `;\\n body.insertAdjacentHTML(\'afterbegin\', iconHtml);\\n }\\n }, 300); // 延迟执行,确保弹窗渲染完成\\n});tant; border-radius: 6px !important; background: #1890ff !important; border-color: #1890ff !important;\';\\n if (cancelBtn) cancelBtn.style.cssText = \'padding: 10px 28px !important; border-radius: 6px !important; background: #f5f7fa !important; border-color: #e4e7ed !important; color: #606266 !important;\';\\n\\n // 可选:插入图标和辅助说明\\n if (body) {\\n const iconHtml = `\\n
\\n \\n \\n \\n \\n
\\n

处理后故障状态将更新为【已受理】

\\n `;\\n body.insertAdjacentHTML(\'afterbegin\', iconHtml);\\n }\\n }, 300); // 延迟执行,确保弹窗渲染完成\\n});\",\"scssEnhance\":\"/* 处理报修弹窗 - 强制美化 */\\n.low-form__203443156751638529 {\\n /* 弹窗容器 */\\n .el-dialog {\\n border-radius: 10px !important;\\n box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12) !important;\\n overflow: hidden !important;\\n }\\n\\n /* 弹窗头部 */\\n .el-dialog__header {\\n background: #fafafa !important;\\n border-bottom: 1px solid #e8e8e8 !important;\\n padding: 16px 24px !important;\\n }\\n .el-dialog__title {\\n font-size: 18px !important;\\n font-weight: 600 !important;\\n color: #333 !important;\\n }\\n\\n /* 弹窗内容区域 */\\n .el-dialog__body {\\n padding: 40px 32px !important;\\n text-align: center !important;\\n }\\n .el-form-item__content {\\n font-size: 22px !important;\\n font-weight: 500 !important;\\n color: #333 !important;\\n line-height: 1.5 !important;\\n }\\n\\n /* 弹窗底部按钮区 */\\n .el-dialog__footer {\\n background: #fafafa !important;\\n border-top: 1px solid #e8e8e8 !important;\\n padding: 16px 24px !important;\\n text-align: right !important;\\n }\\n .el-button {\\n padding: 10px 28px !important;\\n border-radius: 6px !important;\\n font-size: 14px !important;\\n }\\n .el-button--primary {\\n background: #1890ff !important;\\n border-color: #1890ff !important;\\n }\\n .el-button--default {\\n background: #f5f7fa !important;\\n border-color: #e4e7ed !important;\\n color: #606266 !important;\\n }\\n}\",\"labelPosition\":\"right\",\"labelSuffix\":\" \",\"labelWidth\":120,\"gutter\":20,\"menuBtn\":true,\"submitBtn\":true,\"submitText\":\"受理\",\"emptyBtn\":false,\"emptyText\":\"清空\",\"externalTitle\":\"\",\"menuPosition\":\"center\",\"size\":\"default\",\"isSubmitTable\":true,\"column\":{\"fault_number\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"故障编号\",\"readonly\":true,\"clearable\":false,\"display\":true,\"span\":16,\"disabled\":true,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_6858398\"},\"name\":{\"type\":\"input\",\"controlType\":\"input\",\"label\":\"故障名称\",\"readonly\":true,\"clearable\":true,\"display\":true,\"span\":16,\"disabled\":true,\"required\":true,\"hideLabel\":false,\"i18nCode\":\"fields_4326381\",\"labelTip\":\"\"},\"fields_7004879\":{\"type\":\"textarea\",\"controlType\":\"input\",\"label\":\"意见/建议\",\"readonly\":false,\"minRows\":3,\"maxRows\":5,\"display\":true,\"span\":24,\"disabled\":false,\"required\":false,\"hideLabel\":false,\"i18nCode\":\"fields_7004879\"}},\"tableDesignId\":\"2021105111153053697\",\"group\":[]}', NULL, 'N', 'N', 'N', '{\"fields_6858398\":\"return {\\n //简体中文\\n \'zh-CN\': \'故障编号\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_4326381\":\"return {\\n //简体中文\\n \'zh-CN\': \'故障名称\',\\n //English\\n \'en\': \'\',\\n}\",\"fields_7004879\":\"return {\\n //简体中文\\n \'zh-CN\': \'意见/建议\',\\n //English\\n \'en\': \'\',\\n}\",\"config_submitBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'受理\',\\n //English\\n \'en\': \'\',\\n}\",\"config_emptyBtn\":\"return {\\n //简体中文\\n \'zh-CN\': \'清空\',\\n //English\\n \'en\': \'\',\\n}\",\"config_externalTitle\":\"return {\\n //简体中文\\n \'zh-CN\': \'\',\\n //English\\n \'en\': \'\',\\n}\"}'); - - -DROP TABLE IF EXISTS `dev_gzbx_cjys`; -CREATE TABLE `dev_gzbx_cjys` ( - `id` bigint NOT NULL COMMENT '主键', - `tenant_id` bigint NULL DEFAULT NULL COMMENT '租户编号', - `create_user` bigint NULL DEFAULT NULL COMMENT '创建人', - `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', - `create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门id', - `update_user` bigint NULL DEFAULT NULL COMMENT '更新人', - `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', - `is_deleted` int NULL DEFAULT 0 COMMENT '是否删除', - `dev_status` int NULL DEFAULT 0 COMMENT '维修状态', - `dev_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '设备', - `number` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工单编号', - `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工单名称', - `fault_type` int NULL DEFAULT NULL COMMENT '故障类型', - `priority` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '优先级', - `type` int NULL DEFAULT NULL COMMENT '类型', - `completion_time` date NULL DEFAULT NULL COMMENT '完成时间', - `acceptance_time` date NULL DEFAULT NULL COMMENT '验收时间', - `maintenance_perpon` bigint NULL DEFAULT NULL COMMENT '维修人员', - `processing_status` tinyint NULL DEFAULT NULL COMMENT '验收状态(1,已验收。0:待验收)', - PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '设备故障报修' ROW_FORMAT = DYNAMIC; - -SET FOREIGN_KEY_CHECKS = 1; -DROP TABLE IF EXISTS `dev_gzbx_wxjl`; -CREATE TABLE `dev_gzbx_wxjl` ( - `id` bigint NOT NULL COMMENT '主键', - `tenant_id` bigint NULL DEFAULT NULL COMMENT '租户编号', - `create_user` bigint NULL DEFAULT NULL COMMENT '创建人', - `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', - `create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门id', - `update_user` bigint NULL DEFAULT NULL COMMENT '更新人', - `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', - `is_deleted` int NULL DEFAULT 0 COMMENT '是否删除', - `dev_status` int NULL DEFAULT 0 COMMENT '维修状态', - `dev_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '设备', - `number` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工单编号', - `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工单名称', - `fault_type` int NULL DEFAULT NULL COMMENT '故障类型', - `priority` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '优先级', - `type` int NULL DEFAULT NULL COMMENT '类型', - `completion_time` date NULL DEFAULT NULL COMMENT '完成时间', - `acceptance_time` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '验收时间', - `maintenance_perpon` bigint NULL DEFAULT NULL COMMENT '维修人员', - PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '设备故障报修' ROW_FORMAT = DYNAMIC; - -SET FOREIGN_KEY_CHECKS = 1; - - - - +DROP TABLE IF EXISTS "ERP"."ERP_DATASYNCLOG"; +CREATE TABLE "ERP"."ERP_DATASYNCLOG" ( + "ID" VARCHAR(255) NOT NULL, + "CREATE_TIME" DATE, + "LAST_UPDATE_TIME" DATE, + "CHANGE_TYPE" TINYINT, + "MESSAGE" VARCHAR(8188) +) +; +COMMENT ON COLUMN "ERP"."ERP_DATASYNCLOG"."ID" IS 'ID'; +COMMENT ON COLUMN "ERP"."ERP_DATASYNCLOG"."CREATE_TIME" IS '创建时间'; +COMMENT ON COLUMN "ERP"."ERP_DATASYNCLOG"."LAST_UPDATE_TIME" IS '最后更新时间'; +COMMENT ON COLUMN "ERP"."ERP_DATASYNCLOG"."CHANGE_TYPE" IS '更改类型(1 新增,2更改)'; +COMMENT ON COLUMN "ERP"."ERP_DATASYNCLOG"."MESSAGE" IS '报文'; +COMMENT ON TABLE "ERP"."ERP_DATASYNCLOG" IS 'erp数据同步中间表'; + +ALTER TABLE "ERP"."ERP_DATASYNCLOG" ADD PRIMARY KEY ("ID"); \ No newline at end of file