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.
23 lines
524 B
23 lines
524 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
/// <summary>
|
|
/// 站点
|
|
/// </summary>
|
|
public class ICSBadReason
|
|
{
|
|
//不良原因组编码
|
|
public string BRGCode { get; set; }
|
|
//不良原因组描述
|
|
public string BRGDesc { get; set; }
|
|
//不良原因编码
|
|
public string BadReasonCode { get; set; }
|
|
//不良原因描述
|
|
public string BadReasonDesc { get; set; }
|
|
|
|
}
|
|
}
|