You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///DPS管理
|
|
/// </summary>
|
|
[Serializable]
|
|
public class DPSDefine
|
|
{
|
|
[Column("seq")]
|
|
[DisplayName("RUID")]
|
|
public string Seq { get; set; }
|
|
|
|
[Column("mt_group")]
|
|
[DisplayName("分组")]
|
|
public string MtGroup { get; set; }
|
|
|
|
[Column("mt_area")]
|
|
[DisplayName("区域")]
|
|
public string MtArea { get; set; }
|
|
|
|
[Column("addr_id")]
|
|
[DisplayName("电子标签地址")]
|
|
public string AddrId { get; set; }
|
|
|
|
[Column("sys_part_no")]
|
|
[DisplayName("零件号")]
|
|
public string sysPartNo { get; set; }
|
|
|
|
[Column("part_name")]
|
|
[DisplayName("零件名称")]
|
|
public string PartName { get; set; }
|
|
|
|
[Column("part_spec")]
|
|
[DisplayName("零件描述")]
|
|
public string partSpec { get; set; }
|
|
|
|
[Column("is_finish")]
|
|
[DisplayName("是否完成器")]
|
|
public string IsFinish { get; set; }
|
|
|
|
[Column("enabled")]
|
|
[DisplayName("启用/禁用")]
|
|
public string Enabled { get; set; }
|
|
}
|
|
}
|