You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
676 B

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; }
/// <summary>
///
/// </summary>
public string BCGroupID { get; set; }
/// <summary>
/// 不良状态代码
/// </summary>
public string BadCode { get; set; }
/// <summary>
/// 不良状态描述
/// </summary>
public string BadDesc { get; set; }
}
}