32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|