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