修改问题

pull/32/head
刘鑫 2 months ago
parent e551238062
commit 42efd82cd2
  1. 2
      WeiCloud.Fusion/Common.SharedService/Common.Shared.Application/Common.Shared.Application.csproj
  2. 2
      WeiCloud.Fusion/Common.SharedService/Common.Shared.Application/SafetyFirePro/RequestDto/SunPlaceBoardWorkOrderReqDto.cs
  3. 3
      WeiCloud.Fusion/Common.SharedService/Common.Shared.Application/SafetyFirePro/ResponseDto/SunPlaceBoardWorkOrderResDto.cs
  4. 2
      WeiCloud.Fusion/ThirdPartyServices/ThirdPartyServices.Application/ShenZhouShengAn/RequestDto/ThirdPartyProviderQueryDto.cs
  5. 2
      WeiCloud.Fusion/ThirdPartyServices/ThirdPartyServices.DomainService/ShenZhouShengAn/SunPalaceBoardSafetyService.cs

@ -7,7 +7,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<PackageId>Common.Shared.Application</PackageId> <PackageId>Common.Shared.Application</PackageId>
<Version>3.0.0</Version> <Version>3.1.0</Version>
<Authors>zrh-lx</Authors> <Authors>zrh-lx</Authors>
<Company>zrh-lx</Company> <!-- 可选 --> <Company>zrh-lx</Company> <!-- 可选 -->
<Description>包含所有公共使用的 DTO、契约、接口模型等,供微服务之间共享使用</Description> <Description>包含所有公共使用的 DTO、契约、接口模型等,供微服务之间共享使用</Description>

@ -86,7 +86,7 @@ namespace Common.Shared.Application.SafetyFirePro.RequestDto
/// <example>10</example> /// <example>10</example>
/// <remarks>不传则默认为10</remarks> /// <remarks>不传则默认为10</remarks>
[JsonPropertyName("page_size")] [JsonPropertyName("page_size")]
public int? PageSize { get; set; } = 20; public int? Page_size { get; set; } = 20;
/// <summary> /// <summary>
/// 作业状态 /// 作业状态

@ -526,6 +526,9 @@ namespace Common.Shared.Application.SafetyFirePro.ResponseDto
[JsonPropertyName("status")] [JsonPropertyName("status")]
public int Status { get; set; } public int Status { get; set; }
[JsonPropertyName("sort")]
public int? Sort { get; set; }
/// <summary> /// <summary>
/// 审批人信息 /// 审批人信息
/// </summary> /// </summary>

@ -68,6 +68,8 @@ namespace ThirdPartyServices.Application.ShenZhouShengAn.RequestDto
public long? P_region_id { get; set; } public long? P_region_id { get; set; }
public long? Region_id { get; set; } public long? Region_id { get; set; }
public int? Page_size { get; set; }
} }
/// <summary> /// <summary>

@ -548,7 +548,7 @@ namespace ThirdPartyServices.DomainService.ShenZhouShengAn
{ {
dto.Status = statusNot[i].ToString(); dto.Status = statusNot[i].ToString();
dto.Page = 1; dto.Page = 1;
dto.PageSize = 1; dto.Page_size = 1;
HttpClientResult<object> riskResult = await _tokenProviderService HttpClientResult<object> riskResult = await _tokenProviderService
.SendAndParseAsync<WorkTaskQueryParamsDto, HttpClientResult<object>>( .SendAndParseAsync<WorkTaskQueryParamsDto, HttpClientResult<object>>(
"https://zrh.szdunan.cn/v1/api/ticket/safe/ledger", "https://zrh.szdunan.cn/v1/api/ticket/safe/ledger",

Loading…
Cancel
Save