25 lines
516 B
C#
25 lines
516 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.App.Dto
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 企望Erp上传状态
|
||
|
|
/// </summary>
|
||
|
|
public partial class WantitErpUploadStatusDto
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 状态代码
|
||
|
|
/// </summary>
|
||
|
|
public int StatusCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 状态描述
|
||
|
|
/// </summary>
|
||
|
|
public string StatusDes { get; set; }
|
||
|
|
}
|
||
|
|
}
|