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.
66 lines
1.8 KiB
66 lines
1.8 KiB
|
3 weeks ago
|
using System;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
using System.Runtime.Serialization;
|
||
|
|
namespace AMESCoreStudio.WebApi.Models.AMES
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 報工對應途程站點資料檔
|
||
|
|
/// </summary>
|
||
|
|
[Table("WORKING_FLOW_STATIONS")]
|
||
|
|
public class WorkingFlowStations
|
||
|
|
{
|
||
|
|
[Key]
|
||
|
|
[Column("WORKING_FLOW_STATIONS_ID")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "報工對應途程站點ID")]
|
||
|
|
public int WorkingFlowStationsID { get; set; }
|
||
|
|
|
||
|
|
[Column("WORKING_STATION_ID")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "報工站別ID")]
|
||
|
|
public int WorkingStationID { get; set; }
|
||
|
|
|
||
|
|
[Column("WORKING_UNIT_ID")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "報工生產單位ID")]
|
||
|
|
public int WorkingUnitID { get; set; }
|
||
|
|
|
||
|
|
[Column("STATION_ID")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "途程站點ID")]
|
||
|
|
public int StationID { get; set; }
|
||
|
|
|
||
|
|
[Column("UNIT_NO")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "途程生產單位代碼")]
|
||
|
|
[StringLength(2)]
|
||
|
|
public string UnitNo { get; set; }
|
||
|
|
|
||
|
|
[Column("CREATE_USERID")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "創建者")]
|
||
|
|
public int CreateUserID { get; set; }
|
||
|
|
|
||
|
|
[Column("CREATE_DATE")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "創建日期")]
|
||
|
|
public DateTime CreateDate { get; set; }
|
||
|
|
|
||
|
|
[Column("UPDATE_USERID")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "更新者")]
|
||
|
|
public int UpdateUserID { get; set; }
|
||
|
|
|
||
|
|
[Column("UPDATE_DATE")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "更新日期")]
|
||
|
|
public DateTime UpdateDate { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
[Column("STATUS_NO")]
|
||
|
|
[DataMember]
|
||
|
|
[Display(Name = "狀態")]
|
||
|
|
public string StatusNo { get; set; } = "A";
|
||
|
|
}
|
||
|
|
}
|