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.
26 lines
629 B
26 lines
629 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 ICSBadReasonDto : IElementKey
|
|
{
|
|
public int key { get; set; }
|
|
|
|
public string ID { get; set; }
|
|
|
|
public string BRGroupID { get; set; }
|
|
/// <summary>
|
|
/// 不良现象代码
|
|
/// </summary>
|
|
public string BadReasonCode { get; set; }
|
|
/// <summary>
|
|
/// 不良现象描述
|
|
/// </summary>
|
|
public string BadReasonDesc { get; set; }
|
|
}
|
|
}
|