3 Commits

Author SHA1 Message Date
masoodafar-web 19be5dc9dc Merge branch 'kub-stage' into production
Build and Deploy to Production / build-and-deploy (push) Failing after 16m51s
2026-06-20 23:45:47 +03:30
masoodafar-web 6395f63ab5 Merge branch 'kub-stage' of https://git.se.kbs1.ir/admin/CMS into kub-stage
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 16m9s
2026-06-20 23:31:31 +03:30
masoodafar-web 758640cce3 feat(wallet): add current discount balance and change discount value to wallet history response DTOs and Protobuf definitions 2026-06-20 23:31:29 +03:30
5 changed files with 14 additions and 1 deletions
+1
View File
@@ -1,3 +1,4 @@
# CMS Microservice # CMS Microservice
Documentation moved to [totalDoc/INDEX.md](../totalDoc/INDEX.md). Documentation moved to [totalDoc/INDEX.md](../totalDoc/INDEX.md).
@@ -20,6 +20,10 @@ public class GetAllUserWalletHistoryByFilterResponseDto
public long CurrentNetworkBalance { get; set; } public long CurrentNetworkBalance { get; set; }
//تغییر موجودی شبکه //تغییر موجودی شبکه
public long ChangeNerworkValue { get; set; } public long ChangeNerworkValue { get; set; }
//موجودی جاری اعتباری
public long CurrentDiscountBalance { get; set; }
//تغییر موجودی اعتباری
public long ChangeDiscountValue { get; set; }
//افزایشی؟ //افزایشی؟
public bool IsIncrease { get; set; } public bool IsIncrease { get; set; }
//شناسه ارجاع //شناسه ارجاع
@@ -13,6 +13,10 @@ public class GetUserWalletHistoryResponseDto
public long CurrentNetworkBalance { get; set; } public long CurrentNetworkBalance { get; set; }
//تغییر موجودی شبکه //تغییر موجودی شبکه
public long ChangeNerworkValue { get; set; } public long ChangeNerworkValue { get; set; }
//موجودی جاری اعتباری
public long CurrentDiscountBalance { get; set; }
//تغییر موجودی اعتباری
public long ChangeDiscountValue { get; set; }
//افزایشی؟ //افزایشی؟
public bool IsIncrease { get; set; } public bool IsIncrease { get; set; }
//شناسه ارجاع //شناسه ارجاع
@@ -3,7 +3,7 @@
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Version>0.0.199</Version> <Version>0.0.200</Version>
<DebugType>None</DebugType> <DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols> <DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild> <GeneratePackageOnBuild>False</GeneratePackageOnBuild>
@@ -88,6 +88,8 @@ message GetUserWalletHistoryResponse
bool is_increase = 7; bool is_increase = 7;
google.protobuf.Int64Value refrence_id = 8; google.protobuf.Int64Value refrence_id = 8;
google.protobuf.Timestamp created_at = 9; google.protobuf.Timestamp created_at = 9;
int64 current_discount_balance = 10;
int64 change_discount_value = 11;
} }
message GetAllUserWalletHistoryByFilterRequest message GetAllUserWalletHistoryByFilterRequest
{ {
@@ -121,4 +123,6 @@ message GetAllUserWalletHistoryByFilterResponseModel
bool is_increase = 7; bool is_increase = 7;
google.protobuf.Int64Value refrence_id = 8; google.protobuf.Int64Value refrence_id = 8;
google.protobuf.Timestamp created_at = 9; google.protobuf.Timestamp created_at = 9;
int64 current_discount_balance = 10;
int64 change_discount_value = 11;
} }