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 AddProductInspectionContentValueInput
{
///
///
///
public AddProductInspectionContentValueInput() { }
#region Model
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 内容
///
public string Text { get; set; }
///
/// 唯一值
///
public int Value { get; set; }
#endregion
}
}