This commit is contained in:
jl
2025-06-20 11:06:30 +08:00
parent 0d861d7161
commit 7d4c441da4
5 changed files with 15 additions and 13 deletions

View File

@ -48,6 +48,7 @@ namespace Epost.Model
private string _Unit = string.Empty;//小单位
private string _UserCode = string.Empty;//工号
private string _no = string.Empty;//任务序号
private string _readtime = string.Empty;
public string BatchId
{
get
@ -389,6 +390,7 @@ 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 Readtime { get => _readtime; set => _readtime = value; }
}
}