Mini.Crm/Mini.Model/Entity/Ww_hhuser_Eid.cs

20 lines
521 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Mini.Model.Entity
{
public class Ww_hhuser_Eid
{
[Key, Column(Order = 0)]
public string corpid { get; set; }
[Key, Column(Order = 1)]
public string userid { get; set; }
public DateTime ctime { get; set; }
public int eid { get; set; }
public DateTime? utime { get; set; }
}
}