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.
61 lines
1.5 KiB
61 lines
1.5 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace AMESCoreStudio.WebApi.Models.AMES
|
|
{
|
|
/// <summary>
|
|
/// 標籤申請主表
|
|
/// </summary>
|
|
[Table("LABEL_ITEM_PARAM", Schema = "JHAMES")]
|
|
[DataContract]
|
|
public class LabelItemParam
|
|
{
|
|
/// <summary>
|
|
/// 標籤變數ID
|
|
/// </summary>
|
|
[Key]
|
|
[Column("LABEL_PARAM_ID")]
|
|
[DataMember]
|
|
public int LABEL_PARAM_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 單號對應標籤ID
|
|
/// </summary>
|
|
[Column("LABEL_ITEM_ID")]
|
|
[DataMember]
|
|
public int LABEL_ITEM_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 標籤欄位ID
|
|
/// </summary>
|
|
[Column("LABEL_FIELD_ID")]
|
|
[DataMember]
|
|
public int LABEL_FIELD_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 值
|
|
/// </summary>
|
|
[Column("VALUE")]
|
|
[DataMember]
|
|
public string VALUE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 建立日期
|
|
/// </summary>
|
|
[Column("CREATE_DATE")]
|
|
[DataMember]
|
|
public DateTime CREATE_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新日期
|
|
/// </summary>
|
|
[Column("UPDATE_DATE")]
|
|
[DataMember]
|
|
public DateTime UPDATE_DATE { get; set; }
|
|
|
|
// public virtual LabelParam LabelParam { get; set; }
|
|
|
|
}
|
|
}
|
|
|