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