¶Ô±ÈÐÂÎļþ |
| | |
| | | using MES.Service.Dto.webApi; |
| | | |
| | | namespace MES.Service.Dto.service; |
| | | |
| | | public class KcDto |
| | | { |
| | | public List<ErpKc>? ErpKcs { get; set; } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | namespace MES.Service.Dto.webApi; |
| | | |
| | | public class ErpKc |
| | | { |
| | | public string? FMaterialId { get; set; } |
| | | public string? FStockId { get; set; } |
| | | public string? FMtoNo { get; set; } |
| | | public string? FLot { get; set; } |
| | | public string? FStockUnitId { get; set; } |
| | | public string? FBaseUnitId { get; set; } |
| | | public string? FStockStatusId { get; set; } |
| | | public string? FBASEQTY { get; set; } |
| | | public string? FSTOREURNOM { get; set; } |
| | | public string? FSTOREURNUM { get; set; } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | namespace MES.Service.Dto.webApi; |
| | | |
| | | public class Inventory |
| | | { |
| | | public string? ItemNo { get; set; } // æå· |
| | | public string? DepotCode { get; set; } // ä»åº |
| | | } |
| | |
| | | </PropertyGroup> |
| | | |
| | | <ItemGroup> |
| | | <PackageReference Include="Masuit.Tools.Core" Version="2024.3.4"/> |
| | | <PackageReference Include="Masuit.Tools.Core" Version="2024.3.4" /> |
| | | <PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.4" /> |
| | | <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="9.0.4" /> |
| | | <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.4" /> |
| | | <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| | | <PackageReference Include="SqlSugarCore" Version="5.1.4.169" /> |
| | | </ItemGroup> |
| | | |
| | | <ItemGroup> |
| | | <Reference Include="Kingdee.CDP.WebApi.SDK"> |
| | | <HintPath>resources\Kingdee.CDP.WebApi.SDK.dll</HintPath> |
| | | </Reference> |
| | | </ItemGroup> |
| | | |
| | | </Project> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | |
| | | namespace MES.Service.Modes; |
| | | |
| | | [SugarTable("ERP_MES_KC")] |
| | | public class ErpMesKc |
| | | { |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_ERP_KC", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FNUMBER")] |
| | | public string? FNumber { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FQTY")] |
| | | public decimal? FQty { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FBASEUNIT")] |
| | | public string? FBaseUnit { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSTOCKUNIT")] |
| | | public string? FStockUnit { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSTOCKNUMBER")] |
| | | public string? FStockNumber { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "CREATE_DATE")] |
| | | public DateTime? CreateDate { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FBATCHNO")] |
| | | public string? FBatchno { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FMTONO")] |
| | | public string? FMtono { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSTOCKSTATUS")] |
| | | public string? FStockStatus { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSTOREURNOM")] |
| | | public decimal? FStoreUrnom { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "FSTOREURNUM")] |
| | | public decimal? FStoreUrnum { get; set; } |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | |  |
| | | using Kingdee.CDP.WebApi.SDK; |
| | | using MES.Service.DB; |
| | | using MES.Service.Dto.webApi; |
| | | using MES.Service.Modes; |
| | | using SqlSugar; |
| | | using System.Text; |
| | | |
| | | namespace MES.Service.service.Kingdee; |
| | | |
| | | public class ErpKcManager : Repository<ErpMesKc> |
| | | { |
| | | public bool QueryStocks(Inventory inventory) |
| | | { |
| | | List<ErpKc> erpKc = GetErpInventory(inventory); |
| | | |
| | | // æ£æ¥è¿åç»ææ¯å¦ä¸ºç©º |
| | | if (erpKc == null || erpKc.Count == 0) |
| | | { |
| | | throw new NotImplementedException("è¿åç»æä¸ºç©º"); |
| | | } |
| | | else |
| | | { |
| | | var baseObjects = MapErpCABtoWomcab(erpKc); |
| | | |
| | | return UseTransaction(db => |
| | | { |
| | | return SaveData(db, baseObjects) ? 1 : 0; |
| | | }) > 0; |
| | | } |
| | | } |
| | | |
| | | #region 1.è·å峿¶åºå |
| | | public List<ErpKc> GetErpInventory(Inventory inventory) |
| | | { |
| | | //注æ 1ï¼æ¤å¤ä¸å使ç¨åæ°å½¢å¼ä¼ å
¥ç¨æ·ååå¯ç çææä¿¡æ¯ï¼æ¹ä¸ºå¨ç»å½é
ç½®æä»¶ä¸è®¾ç½®ã |
| | | //注æ 2ï¼å¿
é¡»å
é
ç½®ç¬¬ä¸æ¹ç³»ç»ç»å½ææä¿¡æ¯åï¼åè¿è¡ä¸å¡æä½ï¼è¯¦æ
åèåè¯è¨çæ¬SDKä»ç»ä¸çç»å½é
ç½®æä»¶è¯´æã |
| | | //读åé
ç½®ï¼åå§åSDK |
| | | K3CloudApi client = new K3CloudApi(); |
| | | //ç¨äºè®°å½ç»æ |
| | | StringBuilder Info = new StringBuilder(); |
| | | //ä¸å¡å¯¹è±¡æ è¯ |
| | | string formId = "STK_Inventory"; |
| | | DateTime dt = DateTime.Now; |
| | | //æ¥è¯¢å段éåï¼å³è¿ååªäºæ°æ®ï¼ä¸è½ä¸ºç©ºï¼æ ¹æ®ä¸åä¸å¡åæ®å¡«åä¸åçåæ®µåï¼ä»¥ä¸ä»
ä¸ºç¤ºä¾ |
| | | //string fieldKeys = "FCode,FFileId,FRelevantObject"; |
| | | //string FilterString = "FID='-2146304'"; |
| | | string fieldKeys = "FMaterialId.FNumber,FMtoNo,FStockId.FNumber,FLot.FNumber,FStockUnitId.FNumber,FBaseUnitId.FNumber,FStockStatusId.FName,FBASEQTY,FMaterialid.FSTOREURNOM,FMaterialid.FSTOREURNUM"; |
| | | string FilterString = string.Format(@"FMaterialId.FNumber like '%{0}%' and FStockId.FNumber like '%{1}%' and FBaseQty>0", inventory.ItemNo,inventory.DepotCode); |
| | | string OrderString = ""; |
| | | int TopRowCount = 0; |
| | | int StartRow = 0; |
| | | int Limit = 0; |
| | | |
| | | var param = new QueryParam() |
| | | { |
| | | FormId = formId, |
| | | FieldKeys = fieldKeys, |
| | | FilterString = FilterString, |
| | | OrderString = OrderString, |
| | | TopRowCount = TopRowCount, |
| | | StartRow = StartRow, |
| | | Limit = Limit |
| | | }; |
| | | //è°ç¨æ¥å£ |
| | | var result = client.ExecuteBillQuery(param.ToJson()); |
| | | |
| | | return result.Select(s => |
| | | { |
| | | var entity = new ErpKc |
| | | { |
| | | FMaterialId = (string)s[0], |
| | | FMtoNo = (string)s[1], |
| | | FStockId = (string)s[2], |
| | | FLot = (string)s[3], |
| | | FStockUnitId = (string)s[4], |
| | | FBaseUnitId = (string)s[5], |
| | | FStockStatusId = (string)s[6], |
| | | FBASEQTY = (string)s[7], |
| | | FSTOREURNOM = (string)s[8], |
| | | FSTOREURNUM = (string)s[9] |
| | | }; |
| | | return entity; |
| | | }).ToList(); |
| | | } |
| | | #endregion |
| | | |
| | | |
| | | private List<ErpMesKc> MapErpCABtoWomcab(List<ErpKc> dtoList) |
| | | { |
| | | var ErpMesKcList = new List<ErpMesKc>(); |
| | | |
| | | foreach (var dto in dtoList) |
| | | { |
| | | var kc = new ErpMesKc |
| | | { |
| | | FNumber = dto.FMaterialId, |
| | | FQty = Convert.ToDecimal(dto.FBASEQTY), |
| | | FBaseUnit=dto.FBaseUnitId, |
| | | FStockUnit=dto.FStockUnitId, |
| | | FStockNumber=dto.FStockId, |
| | | CreateDate=DateTime.Now, |
| | | FBatchno=dto.FLot, |
| | | FMtono=dto.FMtoNo, |
| | | FStockStatus=dto.FStockStatusId, |
| | | FStoreUrnom= Convert.ToDecimal(dto.FSTOREURNOM), |
| | | FStoreUrnum= Convert.ToDecimal(dto.FSTOREURNUM) |
| | | |
| | | }; |
| | | |
| | | ErpMesKcList.Add(kc); |
| | | } |
| | | |
| | | return ErpMesKcList; |
| | | } |
| | | |
| | | // æå
¥ææ´æ°æ°æ®çæ¹æ³ |
| | | private bool SaveData(SqlSugarScope db, List<ErpMesKc> kcc) |
| | | { |
| | | var save = base.InsertRange(kcc); |
| | | if (save) return true; |
| | | throw new NotImplementedException("æå
¥å¤±è´¥"); |
| | | } |
| | | |
| | | } |
| | |
| | | public bool SaveList(List<ErpWOM> rohIns) |
| | | { |
| | | var result = rohIns.Select(Save).ToList(); |
| | | |
| | | return result.All(b => b); |
| | | } |
| | | |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Logging": { |
| | | "LogLevel": { |
| | | "Default": "Information", |
| | | "Microsoft": "Warning", |
| | | "Microsoft.Hosting.Lifetime": "Information" |
| | | } |
| | | }, |
| | | "AllowedHosts": "*", |
| | | "Version": "1.0.0", |
| | | "X-KDApi-AcctID": "6642174ccf499e", |
| | | "X-KDApi-UserName": "fbb", |
| | | "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH", |
| | | "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa", |
| | | "X-KDApi-LCID": "2052", |
| | | "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud" |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | using MES.Service.Dto.service; |
| | | using MES.Service.Dto.webApi; |
| | | using MES.Service.Modes; |
| | | using MES.Service.service; |
| | | using MES.Service.service.Kingdee; |
| | | using MES.Service.util; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using Newtonsoft.Json; |
| | | using System.Dynamic; |
| | | |
| | | namespace MESApplication.Controllers.Kingdee; |
| | | |
| | | |
| | | [ApiController] |
| | | [Route("api/[controller]")] |
| | | public class ErpKcController : ControllerBase |
| | | { |
| | | private readonly MessageCenterManager _manager = new(); |
| | | private readonly ErpKcManager kc = new(); |
| | | private readonly string METHOD = "POST"; |
| | | private readonly string TableName = "ERPKC"; |
| | | private readonly string URL = "http://localhost:10054/api/ErpKc/"; |
| | | |
| | | |
| | | // |
| | | [HttpPost("Save")] |
| | | public ResponseResult Save(Inventory inventory) |
| | | { |
| | | try |
| | | { |
| | | dynamic resultInfos = new ExpandoObject(); |
| | | resultInfos = kc.QueryStocks(inventory); |
| | | |
| | | return new ResponseResult |
| | | { |
| | | status = 0, |
| | | message = "OK", |
| | | data = resultInfos |
| | | }; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | return ResponseResult.ResponseError(ex); |
| | | } |
| | | } |
| | | } |
| | |
| | | </PropertyGroup> |
| | | |
| | | <ItemGroup> |
| | | <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0"/> |
| | | <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> |
| | | <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.1"> |
| | | <PrivateAssets>all</PrivateAssets> |
| | | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| | |
| | | <PrivateAssets>all</PrivateAssets> |
| | | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| | | </PackageReference> |
| | | <PackageReference Include="Oracle.EntityFrameworkCore" Version="8.21.121"/> |
| | | <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/> |
| | | <PackageReference Include="Oracle.EntityFrameworkCore" Version="8.21.121" /> |
| | | <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" /> |
| | | </ItemGroup> |
| | | |
| | | <ItemGroup> |
| | | <ProjectReference Include="..\MES.Service\MES.Service.csproj"/> |
| | | <ProjectReference Include="..\MES.Service\MES.Service.csproj" /> |
| | | </ItemGroup> |
| | | |
| | | </Project> |
| | |
| | | </PropertyGroup> |
| | | <PropertyGroup> |
| | | <ActiveDebugProfile>IIS Express</ActiveDebugProfile> |
| | | <NameOfLastUsedPublishProfile>C:\Users\qewqer\Desktop\MES\SG\StandardPda\MESApplication\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile> |
| | | <NameOfLastUsedPublishProfile>E:\Tool\SG\StandardPda\MESApplication\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile> |
| | | </PropertyGroup> |
| | | </Project> |
| | |
| | | --> |
| | | <Project> |
| | | <PropertyGroup> |
| | | <_PublishTargetUrl>C:\Users\qewqer\Desktop\MES\SG\StandardPda\MESApplication\bin\Release\net8.0\publish\</_PublishTargetUrl> |
| | | <History>True|2025-04-12T04:05:38.9937329Z||;True|2025-04-11T16:26:37.5266569+08:00||;True|2025-03-20T17:58:14.2077893+08:00||;True|2025-03-15T00:59:39.9999573+08:00||;True|2025-03-07T15:42:21.8276566+08:00||;True|2025-02-27T10:43:45.2314689+08:00||;True|2025-02-21T16:39:35.2452658+08:00||;True|2025-01-13T15:35:48.6521519+08:00||;True|2025-01-08T16:15:03.8764923+08:00||;True|2024-12-30T15:00:59.8090011+08:00||;True|2024-12-06T16:11:01.2090466+08:00||;True|2024-11-26T09:07:33.5654976+08:00||;True|2024-11-20T15:49:27.1100474+08:00||;True|2024-11-16T18:18:42.4224922+08:00||;True|2024-11-15T09:32:12.6287354+08:00||;True|2024-11-13T10:19:32.3283327+08:00||;True|2024-09-06T14:40:56.3762241+08:00||;True|2024-08-20T17:12:00.2924570+08:00||;True|2024-08-17T10:57:05.6670396+08:00||;True|2024-08-17T10:56:46.8068041+08:00||;True|2024-08-16T14:09:17.0526491+08:00||;True|2024-08-15T08:40:32.8134665+08:00||;True|2024-08-14T10:00:27.7017207+08:00||;True|2024-08-14T08:54:44.8284031+08:00||;True|2024-08-07T10:32:10.3689256+08:00||;True|2024-08-05T15:45:03.0864530+08:00||;True|2024-08-03T09:59:13.7916520+08:00||;True|2024-07-31T17:27:28.1965929+08:00||;True|2024-07-31T15:27:34.7943845+08:00||;True|2024-07-30T15:04:50.5849235+08:00||;True|2024-07-30T14:09:06.2877325+08:00||;True|2024-07-29T16:11:30.4493940+08:00||;True|2024-07-23T14:30:34.4591002+08:00||;True|2024-07-22T14:17:39.8186158+08:00||;True|2024-04-10T12:55:31.3963752+08:00||;True|2024-04-08T13:59:25.5487203+08:00||;True|2024-04-06T09:30:09.5350539+08:00||;True|2024-04-06T08:46:05.8814658+08:00||;True|2024-04-05T14:06:52.0448024+08:00||;True|2024-04-05T12:47:46.0561601+08:00||;True|2024-02-26T08:46:22.0988887+08:00||;True|2024-02-24T19:17:13.6770376+08:00||;True|2024-02-24T14:32:37.4450337+08:00||;True|2024-02-23T10:22:06.5150173+08:00||;True|2024-02-22T13:19:56.6997993+08:00||;True|2024-02-22T10:53:17.7929585+08:00||;True|2024-02-21T17:08:06.5553444+08:00||;True|2024-02-19T16:24:37.4912012+08:00||;True|2024-02-02T10:07:23.2726075+08:00||;True|2024-02-02T08:36:49.2904460+08:00||;True|2024-01-29T17:44:43.6800769+08:00||;True|2024-01-23T09:47:26.7811926+08:00||;True|2024-01-18T16:23:30.3373836+08:00||;True|2024-01-17T14:22:04.2552286+08:00||;True|2024-01-16T16:54:42.2316892+08:00||;True|2024-01-16T16:37:23.8028858+08:00||;True|2024-01-16T09:25:24.4007775+08:00||;True|2024-01-15T10:18:57.3362616+08:00||;True|2024-01-15T10:07:14.2044763+08:00||;True|2024-01-10T14:03:36.4451130+08:00||;True|2024-01-09T16:45:32.9601815+08:00||;True|2024-01-06T14:16:34.2732220+08:00||;True|2024-01-06T14:11:45.2134717+08:00||;True|2024-01-06T11:30:58.9198887+08:00||;</History> |
| | | <_PublishTargetUrl>E:\Tool\SG\StandardPda\MESApplication\bin\Release\net8.0\publish\</_PublishTargetUrl> |
| | | <History>True|2025-04-21T00:27:37.2394337Z||;True|2025-04-12T12:05:38.9937329+08:00||;True|2025-04-11T16:26:37.5266569+08:00||;True|2025-03-20T17:58:14.2077893+08:00||;True|2025-03-15T00:59:39.9999573+08:00||;True|2025-03-07T15:42:21.8276566+08:00||;True|2025-02-27T10:43:45.2314689+08:00||;True|2025-02-21T16:39:35.2452658+08:00||;True|2025-01-13T15:35:48.6521519+08:00||;True|2025-01-08T16:15:03.8764923+08:00||;True|2024-12-30T15:00:59.8090011+08:00||;True|2024-12-06T16:11:01.2090466+08:00||;True|2024-11-26T09:07:33.5654976+08:00||;True|2024-11-20T15:49:27.1100474+08:00||;True|2024-11-16T18:18:42.4224922+08:00||;True|2024-11-15T09:32:12.6287354+08:00||;True|2024-11-13T10:19:32.3283327+08:00||;True|2024-09-06T14:40:56.3762241+08:00||;True|2024-08-20T17:12:00.2924570+08:00||;True|2024-08-17T10:57:05.6670396+08:00||;True|2024-08-17T10:56:46.8068041+08:00||;True|2024-08-16T14:09:17.0526491+08:00||;True|2024-08-15T08:40:32.8134665+08:00||;True|2024-08-14T10:00:27.7017207+08:00||;True|2024-08-14T08:54:44.8284031+08:00||;True|2024-08-07T10:32:10.3689256+08:00||;True|2024-08-05T15:45:03.0864530+08:00||;True|2024-08-03T09:59:13.7916520+08:00||;True|2024-07-31T17:27:28.1965929+08:00||;True|2024-07-31T15:27:34.7943845+08:00||;True|2024-07-30T15:04:50.5849235+08:00||;True|2024-07-30T14:09:06.2877325+08:00||;True|2024-07-29T16:11:30.4493940+08:00||;True|2024-07-23T14:30:34.4591002+08:00||;True|2024-07-22T14:17:39.8186158+08:00||;True|2024-04-10T12:55:31.3963752+08:00||;True|2024-04-08T13:59:25.5487203+08:00||;True|2024-04-06T09:30:09.5350539+08:00||;True|2024-04-06T08:46:05.8814658+08:00||;True|2024-04-05T14:06:52.0448024+08:00||;True|2024-04-05T12:47:46.0561601+08:00||;True|2024-02-26T08:46:22.0988887+08:00||;True|2024-02-24T19:17:13.6770376+08:00||;True|2024-02-24T14:32:37.4450337+08:00||;True|2024-02-23T10:22:06.5150173+08:00||;True|2024-02-22T13:19:56.6997993+08:00||;True|2024-02-22T10:53:17.7929585+08:00||;True|2024-02-21T17:08:06.5553444+08:00||;True|2024-02-19T16:24:37.4912012+08:00||;True|2024-02-02T10:07:23.2726075+08:00||;True|2024-02-02T08:36:49.2904460+08:00||;True|2024-01-29T17:44:43.6800769+08:00||;True|2024-01-23T09:47:26.7811926+08:00||;True|2024-01-18T16:23:30.3373836+08:00||;True|2024-01-17T14:22:04.2552286+08:00||;True|2024-01-16T16:54:42.2316892+08:00||;True|2024-01-16T16:37:23.8028858+08:00||;True|2024-01-16T09:25:24.4007775+08:00||;True|2024-01-15T10:18:57.3362616+08:00||;True|2024-01-15T10:07:14.2044763+08:00||;True|2024-01-10T14:03:36.4451130+08:00||;True|2024-01-09T16:45:32.9601815+08:00||;True|2024-01-06T14:16:34.2732220+08:00||;True|2024-01-06T14:11:45.2134717+08:00||;True|2024-01-06T11:30:58.9198887+08:00||;</History> |
| | | <LastFailureDetails /> |
| | | </PropertyGroup> |
| | | </Project> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Logging": { |
| | | "LogLevel": { |
| | | "Default": "Information", |
| | | "Microsoft": "Warning", |
| | | "Microsoft.Hosting.Lifetime": "Information" |
| | | } |
| | | }, |
| | | "AllowedHosts": "*", |
| | | "Version": "1.0.0", |
| | | "X-KDApi-AcctID": "6642174ccf499e", |
| | | "X-KDApi-UserName": "fbb", |
| | | "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH", |
| | | "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa", |
| | | "X-KDApi-LCID": "2052", |
| | | "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud" |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Version": 1, |
| | | "ManifestType": "Build", |
| | | "Endpoints": [] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Logging": { |
| | | "LogLevel": { |
| | | "Default": "Information", |
| | | "Microsoft": "Warning", |
| | | "Microsoft.Hosting.Lifetime": "Information" |
| | | } |
| | | }, |
| | | "AllowedHosts": "*", |
| | | "Version": "1.0.0", |
| | | "X-KDApi-AcctID": "6642174ccf499e", |
| | | "X-KDApi-UserName": "fbb", |
| | | "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH", |
| | | "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa", |
| | | "X-KDApi-LCID": "2052", |
| | | "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud" |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Version": 1, |
| | | "ManifestType": "Build", |
| | | "Endpoints": [] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Logging": { |
| | | "LogLevel": { |
| | | "Default": "Information", |
| | | "Microsoft": "Warning", |
| | | "Microsoft.Hosting.Lifetime": "Information" |
| | | } |
| | | }, |
| | | "AllowedHosts": "*", |
| | | "Version": "1.0.0", |
| | | "X-KDApi-AcctID": "6642174ccf499e", |
| | | "X-KDApi-UserName": "fbb", |
| | | "X-KDApi-AppID": "309305_6Yeq67hszJm4xX+Pw3wCz7UJ4KQ9RsOH", |
| | | "X-KDApi-AppSec": "f11a9b4a85af42898d479e97444acbaa", |
| | | "X-KDApi-LCID": "2052", |
| | | "X-KDApi-ServerUrl": "http://192.168.11.120/k3cloud" |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | { |
| | | "Version": 1, |
| | | "ManifestType": "Publish", |
| | | "Endpoints": [] |
| | | } |