using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations;
namespace IStation.Dto
{
///
/// Get
///
public partial class InspectionTemplateValue4MgrGet
{
///
/// 输入
///
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; }
///
/// Item标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ItemID 必须大于0")]
public long ItemID { get; set; }
}
///
///
///
public InspectionTemplateValue4MgrGet() { }
#region Model
///
/// Item标识
///
public long ID { get; set; }
///
/// Item标识
///
public long ItemID { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 内容
///
public string Text { get; set; }
///
/// 唯一值
///
public int Value { get; set; }
///
/// 创建用户标识
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 更新用户标识
///
public long? UpdateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 使用状态
///
public Model.ProductInspectionContentValue.eUseStatus UseStatus
{
get { return _useStatus; }
set { _useStatus = value; }
}
private Model.ProductInspectionContentValue.eUseStatus _useStatus = Model.ProductInspectionContentValue.eUseStatus.有效;
#endregion
}
}