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

1 line
430 B
C#

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