| | |
| | | var param = { |
| | | MaterialInput: values, |
| | | ControlRuleld: ControlRuleld, //æ§å¶å±æ§ |
| | | SubstituteGoodLis: this.$refs.addFormWmsSubstituteGoodRef.list, //æ¿ä»£å |
| | | SubstituteGoodList: this.$refs.addFormWmsSubstituteGoodRef.list, //æ¿ä»£å |
| | | BaseCustomerList: this.$refs.addFormBaseCustomer.list, //å®¢æ·æ¡£æ¡éå |
| | | ContainerPackagingList: this.$refs.addFormContainerPackagingRef.list //å
è£
å
³ç³» |
| | | } |
| | |
| | | /// </summary> |
| | | public virtual string ABCClassName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ABCåç±» |
| | | /// </summary> |
| | | public virtual int? ABCClass { get; set; } |
| | | public virtual Admin.NET.Core.ABCClassEnum? ABCClass { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç©æè§æ ¼ |
| | |
| | | /// <summary> |
| | | /// ABCåç±» |
| | | /// </summary> |
| | | public virtual int? ABCClass { get; set; } |
| | | public virtual Admin.NET.Core.ABCClassEnum? ABCClass { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç©æè§æ ¼ |
| | |
| | | _wmsMaterialCustomerRep = wmsMaterialCustomerRep; |
| | | _wmsSubstituteGoodRep = wmsSubstituteGoodRep; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// å页æ¥è¯¢ç©æä¿¡æ¯è¡¨ |
| | | /// å页æ¥è¯¢ç©æä¿¡æ¯ |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | |
| | | public async Task<PageResult<WmsMaterialOutput>> Page([FromQuery] WmsMaterialSearch input) |
| | | { |
| | | var wmsMaterials = await _wmsMaterialRep.DetachedEntities |
| | | .Where(!string.IsNullOrEmpty(input.MaterialName), u => EF.Functions.Like(u.MaterialName, $"%{input.MaterialName.Trim()}%")) |
| | | .Where(!string.IsNullOrEmpty(input.MaterialName), u => u.MaterialName == input.MaterialName) |
| | | .Where(!string.IsNullOrEmpty(input.MaterialCode), u => u.MaterialCode == input.MaterialCode) |
| | | .Where(!string.IsNullOrEmpty(input.ErpCode), u => u.ErpCode == input.ErpCode) |
| | | .Where(!string.IsNullOrEmpty(input.MaterialTypeName), u => u.MaterialTypeName == input.MaterialTypeName) |
| | |
| | | .Where(input.MaterialType != null, u => u.MaterialType == input.MaterialType) |
| | | .Where(!string.IsNullOrEmpty(input.MaterialGroup), u => u.MaterialGroup == input.MaterialGroup) |
| | | .Where(!string.IsNullOrEmpty(input.ABCClassName), u => u.ABCClassName == input.ABCClassName) |
| | | //.Where(input.ABCClass != null, u => u.ABCClass == input.ABCClass) |
| | | .Where(input.ABCClass != null, u => u.ABCClass == input.ABCClass) |
| | | .Where(!string.IsNullOrEmpty(input.MaterialSpec), u => u.MaterialSpec == input.MaterialSpec) |
| | | .Where(!string.IsNullOrEmpty(input.InPlaceCode), u => u.InPlaceCode == input.InPlaceCode) |
| | | .Where(!string.IsNullOrEmpty(input.MaterialUnit), u => u.MaterialUnit == input.MaterialUnit) |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// ä¸å页æ¥è¯¢ç©æä¿¡æ¯è¡¨å表 |
| | | /// ä¸å页æ¥è¯¢ç©æä¿¡æ¯å表 |
| | | /// </summary> |
| | | /// <param name="input">ç©æä¿¡æ¯è¡¨æ¥è¯¢åæ°</param> |
| | | /// <returns>(ç©æä¿¡æ¯è¡¨)å®ä¾å表</returns> |
| | | /// <param name="input">ç©æä¿¡æ¯æ¥è¯¢åæ°</param> |
| | | /// <returns>(ç©æä¿¡æ¯)å®ä¾å表</returns> |
| | | [HttpGet("WmsMaterial/listNonPage")] |
| | | public async Task<List<WmsMaterialOutput>> ListNonPageAsync([FromQuery] WmsMaterialSearchNonPage input) |
| | | { |
| | |
| | | var pCreatedUserName = input.CreatedUserName?.Trim() ?? ""; |
| | | var pUpdatedUserName = input.UpdatedUserName?.Trim() ?? ""; |
| | | var wmsMaterials = await _wmsMaterialRep.DetachedEntities |
| | | .Where(!string.IsNullOrEmpty(pMaterialName), u => EF.Functions.Like(u.MaterialName, $"%{pMaterialName}%")) |
| | | .Where(!string.IsNullOrEmpty(pMaterialName), u => u.MaterialName == pMaterialName) |
| | | .Where(!string.IsNullOrEmpty(pMaterialCode), u => u.MaterialCode == pMaterialCode) |
| | | .Where(!string.IsNullOrEmpty(pErpCode), u => u.ErpCode == pErpCode) |
| | | .Where(!string.IsNullOrEmpty(pMaterialTypeName), u => u.MaterialTypeName == pMaterialTypeName) |
| | |
| | | .Where(pMaterialType != null, u => u.MaterialType == pMaterialType) |
| | | .Where(!string.IsNullOrEmpty(pMaterialGroup), u => u.MaterialGroup == pMaterialGroup) |
| | | .Where(!string.IsNullOrEmpty(pABCClassName), u => u.ABCClassName == pABCClassName) |
| | | //.Where(pABCClass != null, u => u.ABCClass == pABCClass) |
| | | .Where(pABCClass != null, u => u.ABCClass == pABCClass) |
| | | .Where(!string.IsNullOrEmpty(pMaterialSpec), u => u.MaterialSpec == pMaterialSpec) |
| | | .Where(!string.IsNullOrEmpty(pInPlaceCode), u => u.InPlaceCode == pInPlaceCode) |
| | | .Where(!string.IsNullOrEmpty(pMaterialUnit), u => u.MaterialUnit == pMaterialUnit) |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// è·åç©æä¿¡æ¯è¡¨ |
| | | /// è·åç©æä¿¡æ¯ |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// è·åç©æä¿¡æ¯è¡¨å表 |
| | | /// è·åç©æä¿¡æ¯å表 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | |
| | | |
| | | |
| | | await _wmsMaterialRep.InsertAsync(wmsMaterial); |
| | | if (materialCustomerList?.Count > 0) |
| | | { |
| | | await _wmsMaterialCustomerRep.InsertAsync(materialCustomerList); |
| | | } |
| | | if (substituteGoodList?.Count > 0) |
| | | { |
| | | await _wmsSubstituteGoodRep.InsertAsync(substituteGoodList); |
| | | |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// å é¤ç©æä¿¡æ¯è¡¨ |
| | | /// å é¤ç©æä¿¡æ¯ |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// æ´æ°ç©æä¿¡æ¯è¡¨ |
| | | /// æ´æ°ç©æä¿¡æ¯ |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | |
| | | #region 导å
¥ |
| | | |
| | | /// <summary> |
| | | /// Excel模æ¿å¯¼å
¥ç©æä¿¡æ¯è¡¨åè½ |
| | | /// Excel模æ¿å¯¼å
¥ç©æä¿¡æ¯åè½ |
| | | /// </summary> |
| | | /// <param name="file">Excelæ¨¡æ¿æä»¶</param> |
| | | /// <returns>导å
¥çè®°å½æ°</returns> |
| | |
| | | { |
| | | addItem.MaterialTypeDescr = (string)_MaterialTypeDescr; |
| | | } |
| | | |
| | | if (string.IsNullOrEmpty(_MaterialType)) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[ç©æç±»å]{_MaterialType}ä¸è½ä¸ºç©ºï¼"); |
| | | } |
| | | |
| | | if(!string.IsNullOrEmpty(_MaterialType)) |
| | | { |
| | | if (!int.TryParse(_MaterialType, out int outMaterialType)&&!string.IsNullOrEmpty(_MaterialType)) |
| | | System.Int32 enumMaterialType = default(System.Int32); |
| | | |
| | | if (!Enum.TryParse<System.Int32>(_MaterialType, out enumMaterialType) && !string.IsNullOrEmpty(_MaterialType)) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[ç©æç±»å]{_MaterialType}å¼ä¸æ£ç¡®ï¼"); |
| | | } |
| | | if (outMaterialType <= 0&&!string.IsNullOrEmpty(_MaterialType)) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[ç©æç±»å]{_MaterialType}å¼ä¸è½å°äºçäº0ï¼"); |
| | | } |
| | | else |
| | | { |
| | | addItem.MaterialType = outMaterialType; |
| | | addItem.MaterialType = enumMaterialType; |
| | | } |
| | | |
| | | } |
| | |
| | | } |
| | | if(!string.IsNullOrEmpty(_ABCClass)) |
| | | { |
| | | if (!int.TryParse(_ABCClass, out int outABCClass)&&!string.IsNullOrEmpty(_ABCClass)) |
| | | Admin.NET.Core.ABCClassEnum enumABCClass = default(Admin.NET.Core.ABCClassEnum); |
| | | |
| | | if (!Enum.TryParse < Admin.NET.Core.ABCClassEnum > (_ABCClass, out enumABCClass)&& !string.IsNullOrEmpty(_ABCClass)) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[ABCåç±»]{_ABCClass}å¼ä¸æ£ç¡®ï¼"); |
| | | } |
| | | if (outABCClass <= 0&&!string.IsNullOrEmpty(_ABCClass)) |
| | | } else |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[ABCåç±»]{_ABCClass}å¼ä¸è½å°äºçäº0ï¼"); |
| | | } |
| | | else |
| | | { |
| | | // addItem.ABCClass = outABCClass; |
| | | addItem.ABCClass = enumABCClass; |
| | | } |
| | | |
| | | } |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// æ ¹æ®çæ¬ä¸è½½ç©æä¿¡æ¯è¡¨çExcel导å
¥æ¨¡æ¿ |
| | | /// æ ¹æ®çæ¬ä¸è½½ç©æä¿¡æ¯çExcel导å
¥æ¨¡æ¿ |
| | | /// </summary> |
| | | /// <param name="version">模æ¿çæ¬</param> |
| | | /// <returns>ä¸è½½çæ¨¡æ¿æä»¶</returns> |
| | |
| | | public IActionResult DownloadExcelTemplate([FromQuery] string version) |
| | | { |
| | | string _path = TemplateConst.EXCEL_TEMPLATEFILE_导å
¥æ¨¡çè·¯å¾ + $"\\WmsMaterial{TemplateConst.EXCEL_TEMPLATEFILE_导å
¥æ¨¡çåç§°åç¼}.xlsx"; |
| | | var fileName = HttpUtility.UrlEncode($"导å
¥æ¨¡æ¿(ç©æä¿¡æ¯è¡¨).xlsx", Encoding.GetEncoding("UTF-8")); |
| | | var fileName = HttpUtility.UrlEncode($"导å
¥æ¨¡æ¿(ç©æä¿¡æ¯).xlsx", Encoding.GetEncoding("UTF-8")); |
| | | return new FileStreamResult(new FileStream(_path, FileMode.Open), "application/octet-stream") { FileDownloadName = fileName }; |
| | | } |
| | | |
| | |
| | | /// </summary> |
| | | public virtual Admin.NET.Core.PlaceStatusEnum? PlaceStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å åæºåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsSrmPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å åæºåºä½å· |
| | | /// </summary> |
| | | public virtual string SrmPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦RGVåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsRgvPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// RGVåºä½å· |
| | | /// </summary> |
| | | public virtual string RgvPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦AGVåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsAgvPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// AGVåºä½å· |
| | | /// </summary> |
| | | public virtual string AgvPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦è¾é线åºä½ |
| | | /// </summary> |
| | | public virtual bool? IsTransPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è¾é线åºä½å· |
| | | /// </summary> |
| | | public virtual string TransPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ¿æ´»ä¸ä»»å¡è°åº¦ |
| | |
| | | /// </summary> |
| | | public virtual Admin.NET.Core.PlaceStatusEnum? PlaceStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å åæºåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsSrmPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å åæºåºä½å· |
| | | /// </summary> |
| | | public virtual string SrmPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦RGVåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsRgvPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// RGVåºä½å· |
| | | /// </summary> |
| | | public virtual string RgvPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦AGVåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsAgvPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// AGVåºä½å· |
| | | /// </summary> |
| | | public virtual string AgvPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦è¾é线åºä½ |
| | | /// </summary> |
| | | public virtual bool? IsTransPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è¾é线åºä½å· |
| | | /// </summary> |
| | | public virtual string TransPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ¿æ´»ä¸ä»»å¡è°åº¦ |
| | |
| | | [Required(ErrorMessage = "åºä½å±æ§ä¸è½ä¸ºç©º")] |
| | | public virtual Admin.NET.Core.PlaceStatusEnum PlaceStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å åæºåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsSrmPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å åæºåºä½å· |
| | | /// </summary> |
| | | public virtual string SrmPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦RGVåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsRgvPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// RGVåºä½å· |
| | | /// </summary> |
| | | public virtual string RgvPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦AGVåºä½ |
| | | /// </summary> |
| | | public virtual bool? IsAgvPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// AGVåºä½å· |
| | | /// </summary> |
| | | public virtual string AgvPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦è¾é线åºä½ |
| | | /// </summary> |
| | | public virtual bool? IsTransPlace { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è¾é线åºä½å· |
| | | /// </summary> |
| | | public virtual string TransPlaceNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ¿æ´»ä¸ä»»å¡è°åº¦ |
| | |
| | | .Where(input.PlaceType != null, u => u.PlaceType == input.PlaceType) |
| | | .Where(!string.IsNullOrEmpty(input.PlaceTypeName), u => u.PlaceTypeName == input.PlaceTypeName) |
| | | .Where(input.PlaceStatus != null, u => u.PlaceStatus == input.PlaceStatus) |
| | | .Where(input.IsSrmPlace != null, u => u.IsSrmPlace == input.IsSrmPlace) |
| | | .Where(!string.IsNullOrEmpty(input.SrmPlaceNo), u => u.SrmPlaceNo == input.SrmPlaceNo) |
| | | .Where(input.IsRgvPlace != null, u => u.IsRgvPlace == input.IsRgvPlace) |
| | | .Where(!string.IsNullOrEmpty(input.RgvPlaceNo), u => u.RgvPlaceNo == input.RgvPlaceNo) |
| | | .Where(input.IsAgvPlace != null, u => u.IsAgvPlace == input.IsAgvPlace) |
| | | .Where(!string.IsNullOrEmpty(input.AgvPlaceNo), u => u.AgvPlaceNo == input.AgvPlaceNo) |
| | | .Where(input.IsTransPlace != null, u => u.IsTransPlace == input.IsTransPlace) |
| | | .Where(!string.IsNullOrEmpty(input.TransPlaceNo), u => u.TransPlaceNo == input.TransPlaceNo) |
| | | .Where(input.IsActivateWCS != null, u => u.IsActivateWCS == input.IsActivateWCS) |
| | | .Where(!string.IsNullOrEmpty(input.Environment), u => u.Environment == input.Environment) |
| | | .Where(!string.IsNullOrEmpty(input.AreaCode), u => u.AreaCode == input.AreaCode) |
| | |
| | | var pPlaceType = input.PlaceType; |
| | | var pPlaceTypeName = input.PlaceTypeName?.Trim() ?? ""; |
| | | var pPlaceStatus = input.PlaceStatus; |
| | | var pIsSrmPlace = input.IsSrmPlace; |
| | | var pSrmPlaceNo = input.SrmPlaceNo?.Trim() ?? ""; |
| | | var pIsRgvPlace = input.IsRgvPlace; |
| | | var pRgvPlaceNo = input.RgvPlaceNo?.Trim() ?? ""; |
| | | var pIsAgvPlace = input.IsAgvPlace; |
| | | var pAgvPlaceNo = input.AgvPlaceNo?.Trim() ?? ""; |
| | | var pIsTransPlace = input.IsTransPlace; |
| | | var pTransPlaceNo = input.TransPlaceNo?.Trim() ?? ""; |
| | | var pIsActivateWCS = input.IsActivateWCS; |
| | | var pEnvironment = input.Environment?.Trim() ?? ""; |
| | | var pAreaCode = input.AreaCode?.Trim() ?? ""; |
| | |
| | | .Where(pPlaceType != null, u => u.PlaceType == pPlaceType) |
| | | .Where(!string.IsNullOrEmpty(pPlaceTypeName), u => u.PlaceTypeName == pPlaceTypeName) |
| | | .Where(pPlaceStatus != null, u => u.PlaceStatus == pPlaceStatus) |
| | | .Where(pIsSrmPlace != null, u => u.IsSrmPlace == pIsSrmPlace) |
| | | .Where(!string.IsNullOrEmpty(pSrmPlaceNo), u => u.SrmPlaceNo == pSrmPlaceNo) |
| | | .Where(pIsRgvPlace != null, u => u.IsRgvPlace == pIsRgvPlace) |
| | | .Where(!string.IsNullOrEmpty(pRgvPlaceNo), u => u.RgvPlaceNo == pRgvPlaceNo) |
| | | .Where(pIsAgvPlace != null, u => u.IsAgvPlace == pIsAgvPlace) |
| | | .Where(!string.IsNullOrEmpty(pAgvPlaceNo), u => u.AgvPlaceNo == pAgvPlaceNo) |
| | | .Where(pIsTransPlace != null, u => u.IsTransPlace == pIsTransPlace) |
| | | .Where(!string.IsNullOrEmpty(pTransPlaceNo), u => u.TransPlaceNo == pTransPlaceNo) |
| | | .Where(pIsActivateWCS != null, u => u.IsActivateWCS == pIsActivateWCS) |
| | | .Where(!string.IsNullOrEmpty(pEnvironment), u => u.Environment == pEnvironment) |
| | | .Where(!string.IsNullOrEmpty(pAreaCode), u => u.AreaCode == pAreaCode) |
| | |
| | | } |
| | | |
| | | } |
| | | if(!string.IsNullOrEmpty(_IsSrmPlace)) |
| | | { |
| | | if(!_IsSrmPlace.Equals("æ¯") && !_IsSrmPlace.Equals("å¦")) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[æ¯å¦å åæºåºä½]{_IsSrmPlace}å¼ä¸æ£ç¡®ï¼"); |
| | | } |
| | | else |
| | | { |
| | | bool outIsSrmPlace = _IsSrmPlace.Equals("æ¯") ? true : false; |
| | | addItem.IsSrmPlace = outIsSrmPlace; |
| | | } |
| | | } |
| | | |
| | | if(!string.IsNullOrEmpty(_SrmPlaceNo)) |
| | | { |
| | | addItem.SrmPlaceNo = (string)_SrmPlaceNo; |
| | | } |
| | | if(!string.IsNullOrEmpty(_IsRgvPlace)) |
| | | { |
| | | if(!_IsRgvPlace.Equals("æ¯") && !_IsRgvPlace.Equals("å¦")) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[æ¯å¦RGVåºä½]{_IsRgvPlace}å¼ä¸æ£ç¡®ï¼"); |
| | | } |
| | | else |
| | | { |
| | | bool outIsRgvPlace = _IsRgvPlace.Equals("æ¯") ? true : false; |
| | | addItem.IsRgvPlace = outIsRgvPlace; |
| | | } |
| | | } |
| | | |
| | | if(!string.IsNullOrEmpty(_RgvPlaceNo)) |
| | | { |
| | | addItem.RgvPlaceNo = (string)_RgvPlaceNo; |
| | | } |
| | | if(!string.IsNullOrEmpty(_IsAgvPlace)) |
| | | { |
| | | if(!_IsAgvPlace.Equals("æ¯") && !_IsAgvPlace.Equals("å¦")) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[æ¯å¦AGVåºä½]{_IsAgvPlace}å¼ä¸æ£ç¡®ï¼"); |
| | | } |
| | | else |
| | | { |
| | | bool outIsAgvPlace = _IsAgvPlace.Equals("æ¯") ? true : false; |
| | | addItem.IsAgvPlace = outIsAgvPlace; |
| | | } |
| | | } |
| | | |
| | | if(!string.IsNullOrEmpty(_AgvPlaceNo)) |
| | | { |
| | | addItem.AgvPlaceNo = (string)_AgvPlaceNo; |
| | | } |
| | | if(!string.IsNullOrEmpty(_IsTransPlace)) |
| | | { |
| | | if(!_IsTransPlace.Equals("æ¯") && !_IsTransPlace.Equals("å¦")) |
| | | { |
| | | throw Oops.Oh($"第{index}è¡[æ¯å¦è¾é线åºä½]{_IsTransPlace}å¼ä¸æ£ç¡®ï¼"); |
| | | } |
| | | else |
| | | { |
| | | bool outIsTransPlace = _IsTransPlace.Equals("æ¯") ? true : false; |
| | | addItem.IsTransPlace = outIsTransPlace; |
| | | } |
| | | } |
| | | |
| | | if(!string.IsNullOrEmpty(_TransPlaceNo)) |
| | | { |
| | | addItem.TransPlaceNo = (string)_TransPlaceNo; |
| | | } |
| | | if(!string.IsNullOrEmpty(_IsActivateWCS)) |
| | | { |
| | | if(!_IsActivateWCS.Equals("æ¯") && !_IsActivateWCS.Equals("å¦")) |
| | |
| | | |
| | | /* |
| | | * @author : åæå¥ |
| | | * @date : 2024/4/23ä¸å6:30:44 |
| | | * @date : 2024/4/24ä¸å4:54:43 |
| | | * @desc : åºä½è¡¨ |
| | | */ |
| | | namespace Admin.NET.Core |
| | |
| | | [Required] |
| | | |
| | | public PlaceStatusEnum PlaceStatus { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦å åæºåºä½ |
| | | /// </summary> |
| | | [Comment("æ¯å¦å åæºåºä½")] |
| | | |
| | | public bool? IsSrmPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å åæºåºä½å· |
| | | /// </summary> |
| | | [Comment("å åæºåºä½å·")] |
| | | [MaxLength(50)] |
| | | public string SrmPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦RGVåºä½ |
| | | /// </summary> |
| | | [Comment("æ¯å¦RGVåºä½")] |
| | | |
| | | public bool? IsRgvPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// RGVåºä½å· |
| | | /// </summary> |
| | | [Comment("RGVåºä½å·")] |
| | | [MaxLength(50)] |
| | | public string RgvPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦AGVåºä½ |
| | | /// </summary> |
| | | [Comment("æ¯å¦AGVåºä½")] |
| | | |
| | | public bool? IsAgvPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// AGVåºä½å· |
| | | /// </summary> |
| | | [Comment("AGVåºä½å·")] |
| | | [MaxLength(50)] |
| | | public string AgvPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦è¾é线åºä½ |
| | | /// </summary> |
| | | [Comment("æ¯å¦è¾é线åºä½")] |
| | | |
| | | public bool? IsTransPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// è¾é线åºä½å· |
| | | /// </summary> |
| | | [Comment("è¾é线åºä½å·")] |
| | | [MaxLength(50)] |
| | | public string TransPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | "avatar": "", |
| | | "version": "4.1.3", |
| | | "createdTime": "2024-4-12 12:56:29", |
| | | "updatedTime": "2024-4-24 15:31:08", |
| | | "updatedTime": "2024-4-24 16:53:19", |
| | | "dbConns": [], |
| | | "profile": { |
| | | "default": { |
| | |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserId", |
| | | "defName": "å建è
Id", |
| | | "defName": "å建人Id", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserId", |
| | | "defName": "ä¿®æ¹è
Id", |
| | | "defName": "ä¿®æ¹äººId", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "ErpCode", |
| | | "defName": "ERP代ç ", |
| | | "defName": "ERPåºåå°", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserId", |
| | | "defName": "å建è
Id", |
| | | "defName": "å建人Id", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | | "defName": "å建è
åç§°", |
| | | "defName": "å建人", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserId", |
| | | "defName": "ä¿®æ¹è
Id", |
| | | "defName": "ä¿®æ¹äººId", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserName", |
| | | "defName": "ä¿®æ¹è
åç§°", |
| | | "defName": "ä¿®æ¹äºº", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | |
| | | "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" |
| | | }, |
| | | { |
| | | "defKey": "IsSrmPlace", |
| | | "defName": "æ¯å¦å åæºåºä½", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "335D3433-78A5-4213-A410-95E1EFF532D6" |
| | | }, |
| | | { |
| | | "defKey": "SrmPlaceNo", |
| | | "defName": "å åæºåºä½å·", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "attr1": "", |
| | | "attr2": "", |
| | | "attr3": "", |
| | | "attr4": "", |
| | | "attr5": "", |
| | | "attr6": "", |
| | | "attr7": "", |
| | | "attr8": "", |
| | | "attr9": "", |
| | | "id": "BC41E431-8E6A-4253-83F4-E589578322AA", |
| | | "baseType": "F8A4AFB0-F3B7-4E32-A5F2-D4D8D3F4BACD", |
| | | "extProps": {}, |
| | | "uiHint": "642D2E0A-8846-4549-BE56-8C0473F26EDE" |
| | | }, |
| | | { |
| | | "defKey": "IsRgvPlace", |
| | | "defName": "æ¯å¦RGVåºä½", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "B18994CA-EB0C-4402-BB8E-749C080166F4" |
| | | }, |
| | | { |
| | | "defKey": "RgvPlaceNo", |
| | | "defName": "RGVåºä½å·", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "3146288B-6B5D-447C-9339-7DB5D90E56FD" |
| | | }, |
| | | { |
| | | "defKey": "IsAgvPlace", |
| | | "defName": "æ¯å¦AGVåºä½", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "3BCB2418-C037-45BE-90B7-23F37696721B" |
| | | }, |
| | | { |
| | | "defKey": "AgvPlaceNo", |
| | | "defName": "AGVåºä½å·", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "B07702F7-3F57-4A8E-B5EA-8A70FD6463E3" |
| | | }, |
| | | { |
| | | "defKey": "IsTransPlace", |
| | | "defName": "æ¯å¦è¾é线åºä½", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "4FD2149A-C5A6-45C0-A72B-0476A5967CF7" |
| | | }, |
| | | { |
| | | "defKey": "TransPlaceNo", |
| | | "defName": "è¾é线åºä½å·", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "755769AB-B19A-4E22-8BA3-2E44E4AC7D86" |
| | | }, |
| | | { |
| | | "defKey": "IsActivateWCS", |
| | | "defName": "æ¯å¦æ¿æ´»ä¸ä»»å¡è°åº¦", |
| | | "comment": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserId", |
| | | "defName": "å建è
Id", |
| | | "defName": "å建人Id", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | | "defName": "å建è
åç§°", |
| | | "defName": "å建人", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserId", |
| | | "defName": "ä¿®æ¹è
Id", |
| | | "defName": "ä¿®æ¹äººId", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserName", |
| | | "defName": "ä¿®æ¹è
åç§°", |
| | | "defName": "ä¿®æ¹äºº", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserId", |
| | | "defName": "å建è
Id", |
| | | "defName": "å建人Id", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserId", |
| | | "defName": "ä¿®æ¹è
Id", |
| | | "defName": "ä¿®æ¹äººId", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | |
| | | ], |
| | | "correlations": [], |
| | | "indexes": [] |
| | | }, |
| | | { |
| | | "id": "A9C5E453-7EE0-447F-97B1-AF52177E7E2E", |
| | | "env": { |
| | | "base": { |
| | | "nameSpace": "", |
| | | "codeRoot": "" |
| | | } |
| | | }, |
| | | "defKey": "wms_equipment_place", |
| | | "defName": "设å¤åºä½å
³èä¿¡æ¯", |
| | | "comment": "", |
| | | "properties": { |
| | | "partitioned by": "(date string)", |
| | | "row format delimited": "", |
| | | "fields terminated by ','": "", |
| | | "collection items terminated by '-'": "", |
| | | "map keys terminated by ':'": "", |
| | | "store as textfile;": "" |
| | | }, |
| | | "nameTemplate": "{defKey}[{defName}]", |
| | | "headers": [ |
| | | { |
| | | "refKey": "hideInGraph", |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "defKey", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "defName", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "primaryKey", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "notNull", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "autoIncrement", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "domain", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "type", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "len", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "scale", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "comment", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "refDict", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "defaultValue", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "isStandard", |
| | | "freeze": false, |
| | | "hideInGraph": false |
| | | }, |
| | | { |
| | | "refKey": "uiHint", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "extProps", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr1", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr2", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr3", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr4", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr5", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr6", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr7", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr8", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | }, |
| | | { |
| | | "refKey": "attr9", |
| | | "freeze": false, |
| | | "hideInGraph": true |
| | | } |
| | | ], |
| | | "fields": [ |
| | | { |
| | | "defKey": "Id", |
| | | "defName": "Id主é®", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": 32, |
| | | "scale": "", |
| | | "primaryKey": true, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "domain": "16120F75-6AA7-4483-868D-F07F511BB081", |
| | | "refDict": "", |
| | | "uiHint": "", |
| | | "id": "FD6CFC18-8FF1-4AC9-9591-8D83EE7EC6C7", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "EquipmentNo", |
| | | "defName": "设å¤å·", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "4B7A4560-9A82-4E0D-913C-4397ACC815A0" |
| | | }, |
| | | { |
| | | "defKey": "PlaceNo", |
| | | "defName": "åºä½å·", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "CC93D3DD-2AF1-4A4E-AC83-894197701520" |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserName", |
| | | "defName": "å建人", |
| | | "comment": "", |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "refDict": "", |
| | | "uiHint": "", |
| | | "id": "3F8A210A-A76C-4D93-8328-6CC79B7875EF", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "CreatedTime", |
| | | "defName": "å建æ¶é´", |
| | | "comment": "", |
| | | "domain": "E9456E44-8231-4BC0-B2CD-5FF4AEC6DE97", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "refDict": "", |
| | | "uiHint": "", |
| | | "id": "7796D18C-32E1-4472-9811-E2983F1E3ECB", |
| | | "baseType": "1D764C4A-6F9F-421E-B11A-6F3E23B51811" |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserName", |
| | | "defName": "ä¿®æ¹äºº", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "94107640-E002-4AB3-A2DC-B66F98D9645F", |
| | | "id": "9FCCB6EB-3536-4ACF-92EA-EE685B1E4869", |
| | | "baseType": "F8A4AFB0-F3B7-4E32-A5F2-D4D8D3F4BACD" |
| | | }, |
| | | { |
| | | "defKey": "UpdatedTime", |
| | | "defName": "ä¿®æ¹æ¶é´", |
| | | "comment": "", |
| | | "domain": "E9456E44-8231-4BC0-B2CD-5FF4AEC6DE97", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "refDict": "", |
| | | "uiHint": "", |
| | | "id": "89D9334C-753F-494A-ACC8-38F38C58C907", |
| | | "baseType": "FC9790A7-36B8-4A48-8F9A-BC1042BCFE64" |
| | | }, |
| | | { |
| | | "defKey": "CreatedUserId", |
| | | "defName": "å建人Id", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "refDict": "", |
| | | "uiHint": "", |
| | | "id": "1924CB76-82B6-4697-BA4D-4A22505420F4", |
| | | "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098" |
| | | }, |
| | | { |
| | | "defKey": "UpdatedUserId", |
| | | "defName": "ä¿®æ¹äººId", |
| | | "comment": "", |
| | | "domain": "717941D9-8B3F-435A-9F8E-8D13B7404D5B", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": false, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": true, |
| | | "refDict": "", |
| | | "uiHint": "", |
| | | "id": "1EC5776B-1E12-4656-941E-93D9202636F8", |
| | | "baseType": "89D69E81-EA34-42EE-9FA2-93B8BD27E098" |
| | | }, |
| | | { |
| | | "defKey": "IsDeleted", |
| | | "defName": "软å 餿 è®°", |
| | | "comment": "", |
| | | "type": "", |
| | | "len": "", |
| | | "scale": "", |
| | | "primaryKey": false, |
| | | "notNull": true, |
| | | "autoIncrement": false, |
| | | "defaultValue": "", |
| | | "hideInGraph": false, |
| | | "refDict": "", |
| | | "extProps": {}, |
| | | "domain": "6F7C1C5C-D159-41E6-BF9D-54DEEFA79AFF", |
| | | "id": "D689DF98-A794-4AF4-8C2C-DB63E7306698", |
| | | "baseType": "7ECAE23D-9FDB-4015-93BC-459D56A1ACA1" |
| | | } |
| | | ], |
| | | "correlations": [], |
| | | "indexes": [] |
| | | } |
| | | ], |
| | | "views": [ |
| | |
| | | "5BA66776-30F0-4C71-92A3-0A6CB6985823", |
| | | "30A9CA8E-93F6-4AFB-A388-CA0C01F74222", |
| | | "AD6794A1-3C5C-4DA3-86A9-222FBBFD109D", |
| | | "041BF159-8998-4542-84A3-5E07D1616AF1" |
| | | "041BF159-8998-4542-84A3-5E07D1616AF1", |
| | | "A9C5E453-7EE0-447F-97B1-AF52177E7E2E" |
| | | ], |
| | | "refViews": [], |
| | | "refDiagrams": [], |