using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Entity
{
[SugarTable("user")]
[Description("平台用户")]
public class PingTaiUser : PingTaiDbEntity
{
///
///
///
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
public string GID { get; set; }
///
///
///
public string USERNAME { get; set; }
///
///
///
public string CODENAME { get; set; }
///
///
///
public string PASSWORD { get; set; }
///
///
///
public string SHOWNAME { get; set; }
///
///
///
public DateTime? ENROLLTIME { get; set; }
///
///
///
public string CREATEUSER { get; set; }
///
///
///
public string MODIFIEDUSER { get; set; }
///
///
///
public DateTime? MODIFIEDTIME { get; set; }
///
///
///
public bool? ISDELETED { get; set; }
///
///
///
public bool? ISDISABLE { get; set; }
///
///
///
public string DELETEUSER { get; set; }
///
///
///
public DateTime? DELETETIME { get; set; }
///
///
///
public string NOCODE { get; set; }
///
///
///
public string OPENID { get; set; }
///
///
///
public string WeChatAccount { get; set; }
///
///
///
public string FaSongFangDaiMa { get; set; }
///
///
///
public string ptPhone { get; set; }
///
///
///
public string ptEmail { get; set; }
///
///
///
public string comid { get; set; }
///
///
///
public bool isAllowGenerate { get; set; }
///
///
///
public bool isAllowSend { get; set; }
///
///
///
public string COMNAME { get; set; }
///
///
///
public string YAOQINGMA { get; set; }
///
///
///
public string cscode { get; set; }
///
///
///
public string COMTYPE { get; set; }
///
///
///
public string CompId { get; set; }
///
///
///
public bool? isinsurance { get; set; }
///
///
///
public string Token { get; set; }
///
///
///
public string Role_Id { get; set; }
///
/// 报关阿里云账户ID
///
public string BaoguanAliId { get; set; }
///
///
///
public bool IsLeave { get; set; }
///
///
///
public bool IsAlterPass { get; set; }
///
///
///
public string unionid { get; set; }
}
}