操控平台后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
//
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
using Admin.NET.Core;
using SqlSugar;
namespace Bodk.NET.Customer.Entities;
[SugarTable("bodk_base_customer", "客户表")]
public class BodkCustomer : EntityBase
{
[SugarColumn(IsNullable = false, ColumnDescription = "客户名称")]
public virtual string Name { get; set; }
[SugarColumn(IsNullable = false, ColumnDescription = "身份证号码")]
public virtual string IdCard { get; set; }
[SugarColumn(IsNullable = false, ColumnDescription = "手机号码")]
public virtual string Phone { get; set; }
[SugarColumn(IsNullable = false, ColumnDescription = "性别")]
public virtual bool IsMale { get; set; }
[SugarColumn(IsJson = true, ColumnDescription = "客户从属的机构列表", IsNullable = true)]
public virtual List<long>? OrgIds { get; set; }
[SugarColumn(IsNullable = true)] public string? ImageUrl { get; set; }
[SugarColumn(IsNullable = true)] public string? VoiceUrl { get; set; }
}