using NFine.Application.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.Models
{
public class ICSBadReasonDto : IElementKey
{
public int key { get; set; }
public string ID { get; set; }
public string BRGroupID { get; set; }
///
/// 不良现象代码
///
public string BadReasonCode { get; set; }
///
/// 不良现象描述
///
public string BadReasonDesc { get; set; }
}
}