Files
wcs/WCS.Model/ApiModel/MatDetailCurrentInfo/UpdateMatDetailCurrentInfoByIdRequest.cs
2025-06-27 14:06:52 +08:00

14 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatDetailCurrentInfo
{
public class UpdateMatDetailCurrentInfoByIdRequest : RequestBase
{
public int MatDetailCurrentInfoId { get; set; }
public int MatQty { get; set; }
}
}