This commit is contained in:
mmrbnjd
2024-09-08 21:50:17 +03:30
parent b81c950c39
commit 7d7b352b51
4 changed files with 83 additions and 41 deletions

View File

@@ -120,31 +120,31 @@ namespace Shared.DTOs
public class InvoicePaymentDTO
{
public int? ID { get; set; }
[MaxLength(9)]
//[MaxLength(9)]
public string? iinn { get; set; }
//شماره پذیرنده فروشگاهی
[MaxLength(14)]
//[MaxLength(14)]
public string? acn { get; set; }
//شماره پایانه
[MaxLength(8)]
//[MaxLength(8)]
public string? trmn { get; set; }
//روش پرداخت
[MaxLength(2)]
//[MaxLength(2)]
public int? pmt { get; set; }
public string? paymentMethod { get; set; }
//شماره پیگیری/شماره مرجع
[MaxLength(14)]
//[MaxLength(14)]
public string? trn { get; set; }
//شماره کارت پرداخت کننده صورتحساب
[MaxLength(16)]
//[MaxLength(16)]
public string? pcn { get; set; }
//شماره/شناسه ملی/کد فراگیر اتباع غیر ایرانی پرداخت کننده صورتحساب
[MaxLength(12)]
public string? pid { get; set; }
//تاریخ و زمان پرداخت
public string? PaymentDateTime { get; set; }
public string? PaymentDateTime { get; set; } = DateTime.Now.ConvertMiladiToShamsiinFront().ShamciToFormatShamciinFront();
//مبلغ پرداختی
[MaxLength(18)]
//[MaxLength(18)]
public long? pv { get; set; }
}