You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
641 B
33 lines
641 B
3 months ago
|
namespace Kean.Infrastructure.Soap.Hithium.Models
|
||
|
{
|
||
|
public class Feedback
|
||
|
{
|
||
|
//申请编号,唯一
|
||
|
public string requestNo
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
//托盘条码
|
||
|
public string barcode
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
//任务状态
|
||
|
//1-开始执行 2-执行完成 3-执行失败
|
||
|
public string feedbackStatus
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
//任务信息
|
||
|
public string message
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
//操作员
|
||
|
public string postUser
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
}
|
||
|
}
|