You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Core.Entity
|
|
{
|
|
/// <summary>
|
|
/// 网站账号维护
|
|
/// </summary>
|
|
[SugarTable("djy_website_account_config")]
|
|
[Description("网站账号维护")]
|
|
public class DjyWebsiteAccountConfig : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 类型代码
|
|
/// </summary>
|
|
public string TypeCode { get; set; }
|
|
/// <summary>
|
|
/// 账号
|
|
/// </summary>
|
|
public string Account { get; set; }
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否为租户(公司)账号
|
|
/// </summary>
|
|
public bool IsTenant { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备案代码
|
|
/// </summary>
|
|
public string RegistPartyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备案全称
|
|
/// </summary>
|
|
public string RegistPartyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联系人
|
|
/// </summary>
|
|
public string RegistContractName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联系邮箱
|
|
/// </summary>
|
|
public string RegistContractEmail { get; set; }
|
|
}
|
|
} |