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.

67 lines
2.1 KiB
C#

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.PingTai
{
[SugarTable("company_new")]
[Description("平台公司")]
public class PingTaiCompany: PingTaiDbEntity
{
public const string AuditStatusNotSubmit = "NotSubmit";
public const string AuditStatusAuditing = "Auditing";
public const string AuditStatusSuccess = "Success";
public const string AuditStatusReject = "Reject";
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
public string CompId { get; set; }
public string CompName { get; set; }
public string SourceName { get; set; }
public int AlertMinValue { get; set; }
public string AuditStatus { get; set; }
public string AuditText { get; set; }
public string AdminUser { get; set; }
public string AdminShowName { get; set; }
public string Address { get; set; }
public string Tel { get; set; }
public string TaxCode { get; set; }
/// <summary>
/// 海关登记号
/// </summary>
public string CustomsCode { get; set; }
public string BankName { get; set; }
public string BankAccount { get; set; }
public string LicenceImage { get; set; }
public string InvoiceSystem { get; set; }
public string InvoiceApi { get; set; }
public string EmailShowName { get; set; }
public bool MinValueSMS { get; set; }
public bool MinValueEmail { get; set; }
public string MinValueEmailAddr { get; set; }
/// <summary>
/// 英文名
/// </summary>
public string EnName { get; set; }
//logo图片路径
public string LogoPath { get; set; }
/// <summary>
/// 舱单传输人备案号
/// </summary>
public string CangdanCode { get; set; }
/// <summary>
/// 宣传标语
/// </summary>
public string Slogan { get; set; }
}
}