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/BookingWeb/DB/Model/OP_LOG.cs

27 lines
842 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_LOG")]
public class OP_LOG
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int LogId { get; set; }
public DateTime OpTime { get; set; }
public string OpUserId { get; set; }
public string OpUserName { get; set; }
public string OpCompanyId { get; set; }
public string OpCompanyName { get; set; }
public string Module { get; set; }
public string Type { get; set; }
public string BillNO { get; set; }
public string MBLNO { get; set; }
public string JsonValue { get; set; }
}
}