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.
59 lines
1.3 KiB
59 lines
1.3 KiB
2 weeks ago
|
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<int> 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; }
|
||
|
}
|
||
|
|
||
|
}
|