ComplianceServer/oldcode/Core.Model/Entity/Wx_Username_Resid.cs

20 lines
435 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("wx_username_resid")]
public class Wx_Username_Resid
{
[Key]
[Column(Order = 0)]
public string resid { get; set; }
[Key]
[Column(Order = 1)]
public string username { get; set; }
public string deptcode { get; set; }
}
}