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 ICSBadCodeDto: IElementKey { public int key { get; set; } public string ID { get; set; } /// /// /// public string BCGroupID { get; set; } /// /// 不良状态代码 /// public string BadCode { get; set; } /// /// 不良状态描述 /// public string BadDesc { get; set; } } }