17 lines
397 B
C#
17 lines
397 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("soft_user_ch")]
|
|
public class Soft_User_CH
|
|
{
|
|
[Key]
|
|
public string UserName { get; set; }
|
|
public int CH { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
public int Eid { get; set; }
|
|
}
|
|
}
|