using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Microsoft.EntityFrameworkCore; using System.Runtime.Serialization; #nullable disable namespace AMESCoreStudio.Web.ViewModels.WHS { public partial class WHS025ViewModel { public int WorkingStandardID { get; set; } public string WorkingUnitNo { get; set; } public List WorkingLineIDs { get; set; } public int WorkingLineID { get; set; } public int WorkingStationID { get; set; } public string UnitNo { get; set; } public string ItemNo { get; set; } public string Side { get; set; } public int OpCnt { get; set; } public int Ct { get; set; } public string StationID { get; set; } public int MachineCnt { get; set; } public string Remark { get; set; } public int CreateUserID { get; set; } public DateTime CreateDate { get; set; } public int UpdateUserID { get; set; } public DateTime UpdateDate { get; set; } // 顯示用欄位 public string WorkingUnitName { get; set; } public string WorkingLineName { get; set; } public string WorkingStationName { get; set; } public string UnitName { get; set; } } }