|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|