Files
ww-jst/wmsjst/JSMachine.WMS.Application/Dto/WantitErpUploadStatusDto.cs
T

25 lines
516 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
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; }
}
}