using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.Dispatch.DB { [Table("OP_STATUS")] public class OpStatusInfo { [Key] public string ST_ID { get; set; } public string BSNO { get; set; } public string STATUS { get; set; } public bool ISCOMP { get; set; } public DateTime? COMPTIME { get; set; } public string COMPOP { get; set; } public string REMARK { get; set; } public string INPUTBY { get; set; } public DateTime INPUTTIME { get; set; } public int? ORDNO { get; set; } public string STATUS_OPSEAE { get; set; } public string STTYPE { get; set; } public string ISOPEN { get; set; } } }