From 0ef3bbe501031d82476ee319458ddaeec2e3b6f8 Mon Sep 17 00:00:00 2001 From: lzttt <1803073139@qq.com> Date: Sat, 12 Oct 2024 17:45:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E5=AE=A2=E6=88=B7=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=8E=88=E6=9D=83=E7=BB=99=E6=9F=90=E4=B8=AA=E4=BF=AE=E7=90=86?= =?UTF-8?q?=E5=8E=82service?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/app/UserCarController.java | 4 +- .../module/custom/service/UserCarService.java | 4 +- .../service/impl/UserCarServiceImpl.java | 122 +- 数据库设计/蓝安集团一体化平台.pdma.json | 1964 +---------------- 4 files changed, 199 insertions(+), 1895 deletions(-) diff --git a/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/controller/app/UserCarController.java b/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/controller/app/UserCarController.java index 2e14b826..39fda59e 100644 --- a/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/controller/app/UserCarController.java +++ b/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/controller/app/UserCarController.java @@ -38,7 +38,7 @@ public class UserCarController { **/ @GetMapping("/empowerUserInfo") @Operation(summary = "授权个人信息到某企业") - public CommonResult empowerUserInfo(@RequestParam("tenantId") String tenantId) { + public CommonResult empowerUserInfo(@RequestParam("tenantId") Long tenantId) { userCarService.empowerUserInfo(tenantId); return CommonResult.success(true); } @@ -78,4 +78,4 @@ public class UserCarController { public CommonResult delById(String id) { return CommonResult.success(userCarService.removeById(id)); } -} \ No newline at end of file +} diff --git a/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/UserCarService.java b/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/UserCarService.java index 647877cd..f4d7fda0 100644 --- a/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/UserCarService.java +++ b/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/UserCarService.java @@ -47,5 +47,5 @@ public interface UserCarService extends IService { * @date 12:40 2024/10/12 * @param tenantId 租户id **/ - void empowerUserInfo(String tenantId); -} \ No newline at end of file + void empowerUserInfo(Long tenantId); +} diff --git a/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/impl/UserCarServiceImpl.java b/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/impl/UserCarServiceImpl.java index b2c9ea16..fec606fc 100644 --- a/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/impl/UserCarServiceImpl.java +++ b/dl-module-base/src/main/java/cn/iocoder/yudao/module/custom/service/impl/UserCarServiceImpl.java @@ -1,25 +1,44 @@ package cn.iocoder.yudao.module.custom.service.impl; import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.lang.UUID; import cn.hutool.json.JSONObject; import cn.hutool.json.JSONUtil; +import cn.iocoder.yudao.common.DictBaseConstants; import cn.iocoder.yudao.framework.common.pojo.CommonResult; import cn.iocoder.yudao.framework.security.core.LoginUser; import cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils; +import cn.iocoder.yudao.module.custom.entity.CarMain; +import cn.iocoder.yudao.module.custom.entity.CustomerCar; +import cn.iocoder.yudao.module.custom.entity.CustomerMain; import cn.iocoder.yudao.module.custom.entity.UserCar; import cn.iocoder.yudao.module.custom.mapper.UserCarMapper; +import cn.iocoder.yudao.module.custom.service.CarMainService; +import cn.iocoder.yudao.module.custom.service.CustomerCarService; +import cn.iocoder.yudao.module.custom.service.CustomerMainService; import cn.iocoder.yudao.module.custom.service.UserCarService; -import cn.iocoder.yudao.module.custom.vo.DrivelicenseVO; -import cn.iocoder.yudao.module.custom.vo.UserCarVO; +import cn.iocoder.yudao.module.custom.vo.*; +import cn.iocoder.yudao.module.system.api.user.AdminUserApi; +import cn.iocoder.yudao.module.system.api.user.dto.AdminUserRespDTO; +import cn.iocoder.yudao.module.system.api.user.dto.UserDTO; import cn.iocoder.yudao.util.VehicleLicenseOCR; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.tencentcloudapi.common.exception.TencentCloudSDKException; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import org.springframework.validation.annotation.Validated; import javax.annotation.Resource; +import java.math.BigDecimal; +import java.time.LocalDateTime; +import java.time.ZoneId; +import java.util.ArrayList; +import java.util.Date; import java.util.List; +import static cn.iocoder.yudao.common.BaseConstants.SIGN_CREATE; + /** * 用户车辆信息表--用户个人录入的 Service 实现类 * @@ -31,6 +50,15 @@ public class UserCarServiceImpl extends ServiceImpl impl @Resource private UserCarMapper userCarMapper; + @Resource + private CustomerMainService customerMainService; + @Resource + private AdminUserApi userApi; + @Resource + private CarMainService carMainService; + @Resource + private CustomerCarService customerCarService; + /** * 创建或更新车辆信息 @@ -89,7 +117,93 @@ public class UserCarServiceImpl extends ServiceImpl impl * @date 12:40 2024/10/12 **/ @Override - public void empowerUserInfo(String tenantId) { + @Transactional(rollbackFor = Exception.class) + public void empowerUserInfo(Long tenantId) { + /*1、基础数据准备*/ + //获取当前登录用户信息 + Long userId = SecurityFrameworkUtils.getLoginUserId(); + AdminUserRespDTO loginUser = userApi.getUser(userId); + //获取当前登录用户车辆信息 + List carList = getMyCar(); + //需要保存的关联关系 + List saveCustomerCarList = new ArrayList<>(); + //需要保存的车辆信息 + List saveCarList = new ArrayList<>(); + //提前为客户id赋值 + String customerId = UUID.randomUUID().toString().replace("-", ""); + /*2、数据转换,将用户表关联信息转换成客户表关联信息 */ + //转换客户数据 + CustomerMain customerMain = new CustomerMain(); + customerMain.setId(customerId); + customerMain.setUserId(userId); + customerMain.setCusName(loginUser.getNickname()); + customerMain.setSex(String.valueOf(loginUser.getSex())); + customerMain.setPhoneNumber(loginUser.getMobile()); + customerMain.setTenantId(tenantId); + customerMain.setTypeCode("01"); + customerMain.setDataFrom("04"); + customerMain.setIsHangAccount("0"); + //转换车辆及关联关系数据 + if (CollUtil.isNotEmpty(carList)){ + carList.forEach(item ->{ + CarMain carItem = new CarMain(); + CustomerCar customerCarItem = new CustomerCar(); + String carId = UUID.randomUUID().toString().replace("-", ""); + //车辆信息 + carItem.setId(carId); + carItem.setEngineNumber(item.getEngineNumber()); + carItem.setVin(item.getVin()); + carItem.setLicenseNumber(item.getLicenseNumber()); + carItem.setCarModel(item.getCarModel()); + carItem.setMaintenanceDate(convertToLocalDateTime(item.getMaintenanceDate())); + carItem.setMaintenanceMileage(convertToBigDecimal(item.getMaintenanceMileage())); + carItem.setInspectionDate(convertToLocalDateTime(item.getInspectionDate())); + carItem.setInsuranceDate(convertToLocalDateTime(item.getInsuranceDate())); + carItem.setCheckDate(convertToLocalDateTime(item.getCheckDate())); + carItem.setNextMaintenanceDate(convertToLocalDateTime(item.getNextMaintenanceDate())); + carItem.setNextMaintenanceMileage(convertToBigDecimal(item.getNextMaintenanceMileage())); + carItem.setNextInspectionDate(convertToLocalDateTime(item.getNextInspectionDate())); + carItem.setInsuranceExpiryDate(convertToLocalDateTime(item.getInsuranceExpiryDate())); + carItem.setNextCheckDate(convertToLocalDateTime(item.getNextCheckDate())); + carItem.setCarBrand(item.getCarBrand()); + carItem.setCarNature(item.getCarNature()); + carItem.setCarCategory(item.getCarCategory()); + carItem.setCarRegisterDate(convertToLocalDateTime(item.getCarRegisterDate())); + carItem.setCarLicenseImg(item.getCarLicenseImg()); + //客户与车辆关联关系 + customerCarItem.setCusId(customerId); + customerCarItem.setCarId(carId); + customerCarItem.setIsOwner(item.getIsOwner()); + saveCarList.add(carItem); + saveCustomerCarList.add(customerCarItem); + + }); + } + + /*3、数据保存*/ + //保存客户信息 + customerMainService.save(customerMain); + //保存车辆信息 + carMainService.saveBatch(saveCarList); + //保存客户与车辆关联关系 + customerCarService.saveBatch(saveCustomerCarList); } -} \ No newline at end of file + + /* Date转换为LocalDateTime */ + private LocalDateTime convertToLocalDateTime(Date carRegisterDate) { + if (carRegisterDate != null) { + return LocalDateTime.ofInstant(carRegisterDate.toInstant(), ZoneId.systemDefault()); + } + return null; + } + + /* Long转换为BigDecimal */ + private BigDecimal convertToBigDecimal(Long value) { + if (value != null) { + return BigDecimal.valueOf(value); + } + return null; + } + +} diff --git a/数据库设计/蓝安集团一体化平台.pdma.json b/数据库设计/蓝安集团一体化平台.pdma.json index 16349417..afd629b3 100644 --- a/数据库设计/蓝安集团一体化平台.pdma.json +++ b/数据库设计/蓝安集团一体化平台.pdma.json @@ -4,7 +4,7 @@ "avatar": "", "version": "4.9.2", "createdTime": "2024-10-9 10:34:15", - "updatedTime": "2024-10-11 14:30:48", + "updatedTime": "2024-10-12 13:40:15", "dbConns": [], "profile": { "default": { @@ -683,7 +683,7 @@ "optionsFetcher": "" } }, - "menuWidth": "298px" + "menuWidth": "273px" }, "entities": [ { @@ -4392,15 +4392,15 @@ "sysProps": {} }, { - "id": "2533579C-DC43-418B-BA5B-ACA680FFE43B", + "id": "672A2E12-DFC6-4168-8722-F92BE2394498", "env": { "base": { "nameSpace": "", "codeRoot": "" } }, - "defKey": "dl_user_car", - "defName": "用户车辆信息表--用户个人录入的", + "defKey": "dl_car_main", + "defName": "车辆信息表", "comment": "", "properties": { "partitioned by": "(date string)", @@ -4550,30 +4550,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "extProps": {}, "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "id": "28F36101-AEFC-453C-9269-66087B95FCA3", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "uiHint": null - }, - { - "defKey": "user_id", - "defName": "用户ID", - "comment": "", - "type": "VARCHAR", - "len": 50, - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "domain": "", - "id": "C524273C-D333-45EF-97B7-6199F5E59A9C" + "id": "5CD491F7-7865-4E43-8104-9DDA572B8F27", + "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" }, { "defKey": "engine_number", @@ -4587,12 +4568,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "21492027-C8C2-44DD-A0A0-A1700ADB2583", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "uiHint": null + "id": "F4065C27-6639-46D3-930D-8392622581D5", + "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" }, { "defKey": "vin", @@ -4606,12 +4586,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "A67FBEAD-8AE4-4BBE-940A-E62A8043A39A", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "uiHint": null + "id": "A7320063-A151-4213-B963-E2B201DD9B47", + "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" }, { "defKey": "license_number", @@ -4625,12 +4604,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "A042006B-6C01-4531-A3FC-ABF1FB39DCEB", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "uiHint": null + "id": "DF1704E9-56A5-4CEA-AC48-0EE153BA2DFB", + "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" }, { "defKey": "car_model", @@ -4644,12 +4622,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "B1C33B09-53B7-4434-9B99-0561EE278BB7", - "uiHint": null + "id": "4459097C-6CA6-40E3-83F8-8C0B687AA82C" }, { "defKey": "maintenance_date", @@ -4663,12 +4640,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "8B9BC4B0-CB73-4252-8A59-2BDAA0499673", - "uiHint": null + "domain": "", + "id": "2F228307-A85F-4E6D-B520-58BF92E95990" }, { "defKey": "maintenance_mileage", @@ -4682,12 +4658,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", "extProps": {}, - "domain": null, - "id": "F8855F6F-7BD6-43F9-A7CF-B8320DE8E201", - "uiHint": null + "domain": "", + "id": "563BB12D-EDC8-4276-9F70-6AB5ACFE6CE8" }, { "defKey": "inspection_date", @@ -4701,12 +4676,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "668C5D66-52F5-4173-AECC-15CFE12D9950", - "uiHint": null + "domain": "", + "id": "CDBA2BDA-DDEA-44E7-8968-28D452D7A6A0" }, { "defKey": "insurance_date", @@ -4720,12 +4694,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "6D722404-3BB1-467A-9F26-05574F668D50", - "uiHint": null + "domain": "", + "id": "FA65B1B6-E92E-409A-84A8-523191590F39" }, { "defKey": "check_date", @@ -4739,12 +4712,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "4174627F-5310-45DF-843A-12CB5C40EC14", - "uiHint": null + "domain": "", + "id": "8651550F-72E6-4AEB-AF77-34CCEEC31C74" }, { "defKey": "next_maintenance_date", @@ -4758,12 +4730,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "4DD0D987-24F8-4722-8408-F8D787DA4757", - "uiHint": null + "domain": "", + "id": "F0BCA0D8-9DA7-4F54-808F-49007D8FF99D" }, { "defKey": "next_maintenance_mileage", @@ -4777,12 +4748,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "1D764C4A-6F9F-421E-B11A-6F3E23B51811", "extProps": {}, - "domain": null, - "id": "DBB774B0-B5BD-44EB-930B-B176E8E5B219", - "uiHint": null + "domain": "", + "id": "24C0D5F6-8B8D-4C9F-AC1F-78CE0CD22529" }, { "defKey": "next_inspection_date", @@ -4796,12 +4766,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "26E51722-2742-4A3B-9990-57F12307EDB8", - "uiHint": null + "domain": "", + "id": "7B79E6B3-8272-4C4C-A352-85EFB9256B52" }, { "defKey": "insurance_expiry_date", @@ -4815,12 +4784,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "9809F670-AE47-496F-85C6-1CB660A3CD15", - "uiHint": null + "domain": "", + "id": "A34B1DB4-66B9-4E6C-8D66-F5E9EBE381B2" }, { "defKey": "next_check_date", @@ -4834,12 +4802,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "7956503F-2BF7-464F-9419-EAEF4362F59A", - "uiHint": null + "domain": "", + "id": "8732690F-55C1-4A4F-A026-723FC1BAE59E" }, { "defKey": "car_brand", @@ -4853,12 +4820,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "17827450-9F97-4ACD-B817-5877452922EB", - "uiHint": null + "id": "31E45E99-2C45-4627-AC6E-8CDE8F0312BE" }, { "defKey": "car_nature", @@ -4876,8 +4842,7 @@ "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "2E13CED6-FDAB-432B-A1F1-117515DE8EBF", - "uiHint": null + "id": "E230657A-8C40-4F8B-95C0-0B824A1EE519" }, { "defKey": "car_register_date", @@ -4891,12 +4856,11 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", "extProps": {}, - "domain": null, - "id": "76B5EA42-E05A-4526-8A17-75B45837B230", - "uiHint": null + "domain": "", + "id": "6D4D9E61-135A-4E1C-A77F-E466F9303836" }, { "defKey": "car_license_img", @@ -4910,18 +4874,17 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": false, - "refDict": null, + "refDict": "", "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", "extProps": {}, "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "id": "B264CB39-9C69-4ECD-A362-01A917912B9C", - "uiHint": null + "id": "0A7D4698-AD5C-4F1D-B3C7-6AEA643A13C4" }, { "defKey": "deleted", "defName": "删除状态删除标志", "comment": "", - "domain": null, + "domain": "", "type": "BIT", "len": "1", "scale": "", @@ -4930,9 +4893,9 @@ "autoIncrement": false, "defaultValue": "0", "hideInGraph": true, - "refDict": null, - "uiHint": null, - "id": "03202707-9022-433E-9989-94D1A213AFE9", + "refDict": "", + "uiHint": "", + "id": "89381BE4-5F56-49DE-BDF7-4A7B3FD763C6", "baseType": "A33DC895-0EF9-49E1-BBFF-53273522C6D1" }, { @@ -4941,16 +4904,16 @@ "comment": "", "domain": "16120F75-6AA7-4483-868D-F07F511BB081", "type": "", - "len": "", + "len": 32, "scale": "", "primaryKey": false, "notNull": false, "autoIncrement": false, "defaultValue": "", "hideInGraph": true, - "refDict": null, - "uiHint": null, - "id": "815912A4-86BE-4262-A9AC-AC3E0F42768E", + "refDict": "", + "uiHint": "", + "id": "8EDD6F2A-D860-4D64-A13C-0B66BBE1903C", "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" }, { @@ -4966,9 +4929,9 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": true, - "refDict": null, - "uiHint": null, - "id": "CEFA5C82-0877-4BE6-AB60-E925F26BCB03", + "refDict": "", + "uiHint": "", + "id": "07977F15-4FD1-4CAB-A7D4-FD9966557BD1", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098" }, { @@ -4977,16 +4940,16 @@ "comment": "", "domain": "16120F75-6AA7-4483-868D-F07F511BB081", "type": "", - "len": "", + "len": 32, "scale": "", "primaryKey": false, "notNull": false, "autoIncrement": false, "defaultValue": "", "hideInGraph": true, - "refDict": null, - "uiHint": null, - "id": "FE8392A3-36DC-44CD-8CCF-1B39C24BC26E", + "refDict": "", + "uiHint": "", + "id": "8F89557B-4A46-441F-A638-799B7C4250A0", "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" }, { @@ -5002,9 +4965,9 @@ "autoIncrement": false, "defaultValue": "", "hideInGraph": true, - "refDict": null, - "uiHint": null, - "id": "5ECFECD6-F854-4981-AF02-33FFC9A94C75", + "refDict": "", + "uiHint": "", + "id": "27B603FD-BBD1-4A2A-A8DF-858FC1EDA69E", "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098" } ], @@ -27202,1777 +27165,6 @@ "correlations": [], "indexes": [], "type": "P" - }, - { - "id": "772EE938-76C1-4EEE-ACF8-DD0722761783", - "defKey": "base_car_main", - "defName": "车辆信息表", - "comment": "", - "properties": {}, - "fields": [ - { - "defKey": "id", - "defName": "主键标识", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": true, - "notNull": true, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "8B8EAE7C-9C89-42F6-960C-E5F517F2F253", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "engine_number", - "defName": "发动机号码", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "A5775ED7-49C1-4A99-B628-8323BA25FC99", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "vin", - "defName": "车架号", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "49A45A2A-776A-4417-B442-BA473B8750E4", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "license_number", - "defName": "车牌号", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "DD04B413-4A45-4FEB-A3A7-B219A84BE35F", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_model", - "defName": "车辆型号", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "C8DDB464-0117-4843-82EB-35B1B97E7E74", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "maintenance_date", - "defName": "保养日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "D628FE91-5BD8-47E7-81C1-E08631024012", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "maintenance_mileage", - "defName": "保养里程", - "comment": "", - "domain": "", - "type": "DECIMAL", - "len": 10, - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "DAA056D5-07D4-41C9-87F3-AA7B3D1326AD", - "baseType": "1A0BDC09-0792-4174-9E8E-80BE8DF44B8E", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "inspection_date", - "defName": "年检日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "E528864F-8C8C-46EB-8A38-DAEEC7BE822E", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "insurance_date", - "defName": "保险日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "167ADAEE-261F-439F-9DD4-44F302A556C0", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "check_date", - "defName": "二级维护时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "61B03ED8-3DE5-43BF-B4C4-AA5B0CF29614", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_maintenance_date", - "defName": "下次保养日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "45194541-EE1B-4BEC-8F7A-F8D981919023", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_maintenance_mileage", - "defName": "下次保养里程", - "comment": "", - "domain": "", - "type": "DECIMAL", - "len": 10, - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "AB51F7D8-FD57-4BCA-84CA-2ACB4561B765", - "baseType": "1A0BDC09-0792-4174-9E8E-80BE8DF44B8E", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_inspection_date", - "defName": "下次年检日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "6C0352A9-DFFE-4D2A-9F04-80D4F50E7CF0", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "insurance_expiry_date", - "defName": "保险到期日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "349BF753-18FF-42CE-B8BF-CCAFBB2E4E6E", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_check_date", - "defName": "下次二级维护时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "13A9B0B2-6DF8-486D-9487-2D67E3459B3F", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_brand", - "defName": "车辆品牌", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "BC100EB7-E78F-4736-B6B0-C240FA417271", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_nature", - "defName": "车辆性质:营运 非营运等", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "9AD41820-7FE9-4D33-A87C-D8011CE544FB", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_category", - "defName": "车辆类别:私家车 货车 教练车 公务车 出租车", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "753530E7-71EF-4895-A89A-1C246E34756A", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "B5325CB8-0051-48A5-8025-9B73949D5AFB", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_register_date", - "defName": "车辆注册日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "35AC9D59-E54E-4803-BBC8-2D75DFF926A2", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_license_img", - "defName": "行驶证图片", - "comment": "", - "domain": "AA4D5F74-732E-426C-A639-8842B4BC52B2", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "87682E41-4218-4715-B630-72A4C63029C1", - "baseType": "B17BDED3-085F-40E1-9019-3B79CF2BF075", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "recently_handled_business", - "defName": "最近办理业务", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "615269F6-ECFF-4AAD-B8E6-81C374E853F6", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "recently_handle_business_time", - "defName": "最近办理业务的时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "DADD1EE0-937D-4343-A153-0B546B66CE84", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_brand_input", - "defName": "车辆品牌(输入框)", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "DE7B4364-7D7A-4704-A99F-A58BA762816B", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_model_input", - "defName": "车辆型号(输入框)", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "353AA6C4-EE39-4F86-91C4-106DB0B7A377", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "deleted", - "defName": "删除状态删除标志", - "comment": "", - "domain": "F8C1B685-B82C-442F-BF3C-EF01A3884A07", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": true, - "autoIncrement": false, - "defaultValue": "b'0'", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "8F600CCD-F791-4730-8DA5-B78BD8837682", - "baseType": "A33DC895-0EF9-49E1-BBFF-53273522C6D1", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "creator", - "defName": "创建人", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "C8BAF9A3-A0F3-4E2A-938D-A9E366D096FC", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "create_time", - "defName": "创建时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "B140F7B6-0C1E-49F2-991B-DCD4688071F8", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "updater", - "defName": "更新人", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "F0A71CB6-F7E6-4405-AD32-877FF4F7FB1E", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "update_time", - "defName": "更新时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "C95D0BEB-A6DB-4935-AA7F-561D3E45BC1A", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "tenant_id", - "defName": "租户号", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "B7215C87-91A2-4028-8855-F905520C6798", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - } - ], - "indexes": [], - "sysProps": { - "nameTemplate": "{defKey}[{defName}]" - }, - "headers": [ - { - "freeze": false, - "refKey": "hideInGraph", - "hideInGraph": true - }, - { - "freeze": true, - "refKey": "defKey", - "hideInGraph": false - }, - { - "freeze": true, - "refKey": "defName", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "primaryKey", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "notNull", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "autoIncrement", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "domain", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "type", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "len", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "scale", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "comment", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "refDict", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "defaultValue", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "isStandard", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "uiHint", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "extProps", - "hideInGraph": true - } - ], - "correlations": [], - "notes": {} - }, - { - "id": "210BCD3A-6DAF-49F8-BF88-7E65D2B2FEEF", - "defKey": "base_user_car", - "defName": "用户车辆信息表--用户个人录入的", - "comment": "", - "properties": {}, - "fields": [ - { - "defKey": "id", - "defName": "主键标识", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": true, - "notNull": true, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "CA92563B-805C-42C9-B5EF-DA4EEFAC24E3", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "user_id", - "defName": "用户ID", - "comment": "", - "type": "VARCHAR", - "len": 50, - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "domain": "", - "id": "043E95EA-52A2-4C8E-B275-5394988C4D30" - }, - { - "defKey": "engine_number", - "defName": "发动机号码", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "186DE97E-5CB5-4423-9927-397D36C9480F", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "vin", - "defName": "车架号", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "E1480D07-C19C-4616-80D8-381F72435C2E", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "license_number", - "defName": "车牌号", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "E4D35083-436F-4A66-A73B-6D6D11C54665", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_brand", - "defName": "车辆品牌", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "5DA90757-CAA5-42BB-90A2-669E7FE4C8A7", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_model", - "defName": "车辆型号", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "90B12816-BA4D-4B5A-BA33-7E2B4C7C0680", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_nature", - "defName": "车辆性质:营运 非营运等", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "47248DC7-67D0-40E6-9A8E-81F972380F78", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_category", - "defName": "车辆类别:私家车 货车 教练车 公务车 出租车", - "comment": "", - "domain": "9092C4E0-1A54-4859-ABBB-5B62DBC27573", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "844952D5-31B1-4EA1-AC65-FD69E3610AAB", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_license_img", - "defName": "行驶证图片", - "comment": "", - "domain": "AA4D5F74-732E-426C-A639-8842B4BC52B2", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "1B534D4B-045D-4130-8E83-FE3643E66E88", - "baseType": "B17BDED3-085F-40E1-9019-3B79CF2BF075", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "car_register_date", - "defName": "车辆注册日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "A6532996-DAB2-4153-8D26-3E54E3597973", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "maintenance_date", - "defName": "保养日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "8D78F636-7592-4AEC-B441-DB51CA6C44F0", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "maintenance_mileage", - "defName": "保养里程", - "comment": "", - "domain": null, - "type": "DECIMAL", - "len": 10, - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "190183EF-45FE-4F55-9AA1-194A465AB17D", - "baseType": "1A0BDC09-0792-4174-9E8E-80BE8DF44B8E", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "inspection_date", - "defName": "年检日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "22610152-A673-4C74-87A2-37AE8BBA76C8", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "insurance_date", - "defName": "保险日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "08C6BDAA-AAF6-4C60-916D-F5BED26DB2CC", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "check_date", - "defName": "二级维护时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "247CD9D3-0542-4D55-A8CA-CFEAC2CE267B", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_maintenance_date", - "defName": "下次保养日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "A1E4FEBF-F37C-450C-B7F9-DA19D476A1A5", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_maintenance_mileage", - "defName": "下次保养里程", - "comment": "", - "domain": null, - "type": "DECIMAL", - "len": 10, - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "8D8B2A81-6559-4741-BB51-68C7BF04BA6A", - "baseType": "1A0BDC09-0792-4174-9E8E-80BE8DF44B8E", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_inspection_date", - "defName": "下次年检日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "7605E699-BFF7-47C1-9CCD-4887F4ADA239", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "insurance_expiry_date", - "defName": "保险到期日期", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "7DBCC0E2-2B3C-4B69-B68A-B4FD2DB26C51", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "next_check_date", - "defName": "下次二级维护时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "EAE16FE6-BC69-4B69-BED0-CA61B2B5E413", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "is_owner", - "defName": "是否车主", - "comment": "", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": "", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", - "id": "FF02F510-773A-4BA0-992A-F9C31A5F3316" - }, - { - "defKey": "deleted", - "defName": "删除状态删除标志", - "comment": "", - "domain": "F8C1B685-B82C-442F-BF3C-EF01A3884A07", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": true, - "autoIncrement": false, - "defaultValue": "b'0'", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "96D0C3C2-3722-46ED-B650-6810F548D26D", - "baseType": "A33DC895-0EF9-49E1-BBFF-53273522C6D1", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "creator", - "defName": "创建人", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "9CCFC510-6E12-4FCB-950A-1229C44BD438", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "create_time", - "defName": "创建时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "2F7C2A95-95FC-4322-AE2E-E0064978D483", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "updater", - "defName": "更新人", - "comment": "", - "domain": "16120F75-6AA7-4483-868D-F07F511BB081", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "EA759528-D68C-4D13-93F7-39167613452F", - "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - }, - { - "defKey": "update_time", - "defName": "更新时间", - "comment": "", - "domain": "7CFFA0D3-6A93-4DDC-BC10-DF21211064DC", - "type": "", - "len": "", - "scale": "", - "primaryKey": false, - "notNull": false, - "autoIncrement": false, - "defaultValue": "", - "hideInGraph": false, - "refDict": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "id": "A6912DE4-D76F-4E70-939E-2D7E116F125F", - "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098", - "extProps": {}, - "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" - } - ], - "indexes": [], - "sysProps": { - "nameTemplate": "{defKey}[{defName}]" - }, - "headers": [ - { - "freeze": false, - "refKey": "hideInGraph", - "hideInGraph": true - }, - { - "freeze": true, - "refKey": "defKey", - "hideInGraph": false - }, - { - "freeze": true, - "refKey": "defName", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "primaryKey", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "notNull", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "autoIncrement", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "domain", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "type", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "len", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "scale", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "comment", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "refDict", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "defaultValue", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "isStandard", - "hideInGraph": false - }, - { - "freeze": false, - "refKey": "uiHint", - "hideInGraph": true - }, - { - "freeze": false, - "refKey": "extProps", - "hideInGraph": true - } - ], - "correlations": [], - "type": "P", - "notes": {} } ], "views": [], @@ -30534,7 +28726,7 @@ "defName": "业务基础库", "refEntities": [ "BE8A2278-6312-499D-BF94-8900981557ED", - "2533579C-DC43-418B-BA5B-ACA680FFE43B", + "672A2E12-DFC6-4168-8722-F92BE2394498", "842150A7-AD3C-457B-AA05-000C02C679EC", "3BC3BF5D-14E1-4BAB-9081-32B2EA230649", "9B2F50D3-8720-4A28-9814-2BCF5DBC3389", @@ -30543,9 +28735,7 @@ "13D6C572-46EA-4D3F-A37A-65875A23AB6B", "A1A0C1C6-B78D-47E0-AB05-F5A38DAA4D08", "D47FC836-3F02-4B09-A584-E66CD6AF2D7A", - "FC3A9B49-EF15-4D18-8F5E-8FA8688C6702", - "772EE938-76C1-4EEE-ACF8-DD0722761783", - "210BCD3A-6DAF-49F8-BF88-7E65D2B2FEEF" + "FC3A9B49-EF15-4D18-8F5E-8FA8688C6702" ], "refViews": [], "refDiagrams": [