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

26 lines
796 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRM.Core.Model.Entity
{
public class Wx_Tran_User
{
[Key]
public string softusername { get; set; }
public string umid { get; set; }
public string cname { get; set; }
public string idcardno { get; set; }
public string lastnum3 { get; set; }
public DateTime regdate { get; set; }
public string szzyorderid { get; set; }
public string risklevel { get;set; }
public DateTime? exptime { get; set; }
public string riskinfo { get; set; }
public bool isc0user { get; set; }
public bool isc1_0user { get; set;}
}
}