merge from 2023-03-14
This commit is contained in:
59
extend/Tnb.Extend.Entitys/Entity/CustomerEntity.cs
Normal file
59
extend/Tnb.Extend.Entitys/Entity/CustomerEntity.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 客户信息.
|
||||
/// </summary>
|
||||
[SugarTable("ext_customer", TableDescription = "客户信息")]
|
||||
public class CustomerEntity : CLEntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 编码.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Code")]
|
||||
public string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户名称.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_CustomerName")]
|
||||
public string Customername { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Address")]
|
||||
public string Address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_Name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 联系方式.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_ContactTel")]
|
||||
public string ContactTel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 删除标志.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteMark")]
|
||||
public float Deletemark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 删除时间.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteTime")]
|
||||
public DateTime Deletetime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 删除用户.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_DeleteUserId")]
|
||||
public string Deleteuserid { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user