using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Zxd.Entity.Zxd { [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; } } }