You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
472 B
C#
20 lines
472 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace SlnMesnac.Model.dto
|
|
{
|
|
/// <summary>
|
|
/// 接口请求参数
|
|
/// </summary>
|
|
[DataContract(Name = "ApiRequestParam 接口请求参数")]
|
|
public class ApiRequestParam
|
|
{
|
|
public string MaterialBarcode{ get; set; }
|
|
|
|
public string CanNumber{ get; set; }
|
|
|
|
public string beginTime{ get; set; }
|
|
|
|
public string endTime { get; set; }
|
|
}
|
|
} |