using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.BasicData.Entities;
///
/// 客户信息
///
[SugarTable("bas_customer")]
public partial class BasCustomer : BaseEntity
{
public BasCustomer()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 客户代码
///
public string customer_code { get; set; } = string.Empty;
///
/// 客户名称
///
public string customer_name { get; set; } = string.Empty;
///
/// 所属组织
///
public string? org_id { get; set; }
///
/// 客户简称
///
public string? short_name { get; set; }
///
/// 详细地址
///
public string? full_address { get; set; }
///
/// 邮编
///
public string? postal_code { get; set; }
///
/// 国家
///
public string? country { get; set; }
///
/// 省
///
public string? province { get; set; }
///
/// 市
///
public string? city { get; set; }
///
/// 区
///
public string? district { get; set; }
///
/// 街道地址
///
public string? street { get; set; }
///
/// 联系人名称
///
public string? contact_name { get; set; }
///
/// 联系人电话
///
public string? contact_phone { get; set; }
///
/// 联系人手机
///
public string? contact_mobile { get; set; }
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 扩展字段
///
public string? extras { get; set; }
}