This commit is contained in:
jl
2025-06-05 15:11:19 +08:00
parent 285bae186b
commit 8c1493f76e
17 changed files with 351 additions and 273 deletions

View File

@ -48,6 +48,8 @@ namespace Epost.Model
private string _Unit = string.Empty;//小单位
private string _UserCode = string.Empty;//工号
private string _no = string.Empty;//任务序号
private string _shopname = string.Empty;
private string _orderway = string.Empty;
public string BatchId
{
get
@ -389,6 +391,8 @@ namespace Epost.Model
public string UserCode { get => _UserCode; set => _UserCode = value; }
public string No { get => _no; set => _no = value; }
public string ID { get => _ID; set => _ID = value; }
public string Shopname { get => _shopname; set => _shopname = value; }
public string Orderway { get => _orderway; set => _orderway = value; }
}
}