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.

25 lines
619 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
{
public OP_STATUS_LOG()
{
this.OP_TIME = DateTime.Now;
}
[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; }
}
}