14 lines
303 B
C#
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; }
|
|
}
|
|
}
|