15 lines
296 B
C#
15 lines
296 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.MatInventoryDetail
|
|
{
|
|
public class CompareMatInventoryDetailRequest : RequestBase
|
|
{
|
|
public List<string> MatSns { get; set; }
|
|
|
|
public string GroupName { get; set; }
|
|
|
|
}
|
|
}
|