ComplianceServer/code/Hg.Core.Entity/Wx_Username_Resid.cs

24 lines
535 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.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; }
public DateTime? Ctime { get; set; }
public int? putnum { get; set; }
}
}