初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
namespace Hncore.Pass.PaymentCenter.Domain
{
public partial class Manager
{
public int Id { get; set; }
public int TenantId { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
public int DeleteTag { get; set; }
public int CreatorId { get; set; }
public int UpdatorId { get; set; }
public string LoginCode { get; set; }
public string Password { get; set; }
public int RoleId { get; set; }
public int State { get; set; }
public string PhotoUrl { get; set; }
public string WxOpenid { get; set; }
public string WxNickName { get; set; }
public string WxImage { get; set; }
public int? Source { get; set; }
public string Phone { get; set; }
public string ManagerCode { get; set; }
public string RealName { get; set; }
public string Email { get; set; }
public sbyte? IsRoot { get; set; }
public int? SystemId { get; set; }
}
}