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.
36 lines
923 B
C#
36 lines
923 B
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; }
|
|
}
|
|
} |