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 UpdateProductInspectionContentValueInput
{
///
///
///
public UpdateProductInspectionContentValueInput() { }
#region Model
///
/// Item标识
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")]
public long ID { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 内容
///
public string Text { get; set; }
///
/// 唯一值
///
public int Value { get; set; }
///
/// 使用状态
///
public Model.ProductInspectionContentValue.eUseStatus UseStatus
{
get { return _useStatus; }
set { _useStatus = value; }
}
private Model.ProductInspectionContentValue.eUseStatus _useStatus = Model.ProductInspectionContentValue.eUseStatus.有效;
#endregion
}
}