This commit is contained in:
jl
2025-06-30 10:14:05 +08:00
parent 722f16a77e
commit fb2aa4f239
10 changed files with 146 additions and 138 deletions

View File

@ -26,6 +26,7 @@ namespace Epost.Model
private string _W_Quantity = string.Empty;
private string _Quantity = string.Empty;
private string _Rfcode = string.Empty;
private string _info = string.Empty;
@ -132,5 +133,6 @@ namespace Epost.Model
public string Rfcode { get => _Rfcode; set => _Rfcode = value; }
public string W_Quantity { get => _W_Quantity; set => _W_Quantity = value; }
public string Quantity { get => _Quantity; set => _Quantity = value; }
public string Info { get => _info; set => _info = value; }
}
}