You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/MvcShipping/DB/OP_STATUS_LOG.cs

20 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BookingWeb.DB.Model
{
[Table("OP_STATUS_LOG")]
public class OP_STATUS_LOG
{
[Key]
public string GID { get; set; }
public string RELATIVE_ID { get; set; }
public string STATUS { get; set; }
public DateTime OP_TIME { get; set; }
public string OP_USER { get; set; }
}
}