16 lines
373 B
C#
16 lines
373 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.BAS_COMPLIANCE")]
|
|
public class BAS_COMPLIANCE
|
|
{
|
|
[Key]
|
|
public decimal EID { get; set; }
|
|
public string USERNAME { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|