19 lines
496 B
C#
19 lines
496 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.BAS_ACTIONLOG")]
|
|
public class BAS_ACTIONLOG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public decimal ACTIONID { get; set; }
|
|
public decimal USERID { get; set; }
|
|
public string IP { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public string URL { get; set; }
|
|
}
|
|
}
|