Mini.Crm/Mini.Model/Entity/Ww_UserChat.cs

22 lines
567 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_UserChat
{
[Key, Column(Order = 0)]
public string userid { get; set; }
[Key, Column(Order = 1)]
public string corpid { get; set; }
[Key, Column(Order = 2)]
public string deptuserid { get; set; }
public DateTime? ctime { get; set; }
public DateTime? lmsgtime { get; set; }
}
}