2025-04-24 18:31:27 +08:00

130 lines
3.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.User
{
public class AccountPageList
{
/// <summary>
/// Desc:操作员ID
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public Guid ID { get; set; }
/// <summary>
/// Desc:帐号,建议前带商家前缀
/// Default:
/// Nullable:False
/// </summary>
public string Login { get; set; }
/// <summary>
/// Desc:名字
/// Default:
/// Nullable:False
/// </summary>
public string Name { get; set; }
/// <summary>
/// Desc:是否外国账号 1=是,0=否
/// Default:
/// Nullable:False
/// </summary>
public string IfForeign { get; set; }
/// <summary>
/// Desc:手机号码
/// Default:
/// Nullable:True
/// </summary>
public string Mobile { get; set; }
/// <summary>
/// Desc:账号类型。0=供应商 1=管理员
/// Default:
/// Nullable:False
/// </summary>
public string SystemType { get; set; }
/// <summary>
/// Desc:状态。1=正常0=禁用。
/// Default:
/// Nullable:False
/// </summary>
public string Status { get; set; }
/// <summary>
/// Desc:创建人
/// Default:
/// Nullable:True
/// </summary>
public string Creater { get; set; }
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// Desc:编辑人
/// Default:
/// Nullable:True
/// </summary>
public string Editor { get; set; }
/// <summary>
/// Desc:编辑时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? EditTime { get; set; }
/// <summary>
/// Desc:备注
/// Default:
/// Nullable:True
/// </summary>
public string Note { get; set; }
/// <summary>
/// Desc:供应商ID
/// Default:
/// Nullable:True
/// </summary>
public string SupplierId { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string SupplierName { get; set; }
/// <summary>
/// Desc:采购组织ID
/// Default:
/// Nullable:True
/// </summary>
public string FPurchaseOrgId { get; set; }
/// <summary>
/// Desc:采购组织名称
/// Default:
/// Nullable:True
/// </summary>
public string FPurchaseOrgName { get; set; }
}
}