using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations;
namespace IStation.Dto
{
///
///
///
public class InspectionTemplateBundle4MgrGetProductType
{
///
/// CorpID 输入
///
public class Input
{
///
/// 客户标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "CorpID 必须大于0")]
public long CorpID { get; set; }
///
/// 客户标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ProductType 必须大于0")]
public long ProductType { get; set; }
}
///
///
///
public List GrpList { get; set; }
///
///
///
public List ItemList { get; set; }
}
}