merge from 2023-03-14
This commit is contained in:
41
extend/Tnb.Extend.Entitys/Dto/Customer/CustomerListOutput.cs
Normal file
41
extend/Tnb.Extend.Entitys/Dto/Customer/CustomerListOutput.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using JNPF.DependencyInjection;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.Customer;
|
||||
|
||||
/// <summary>
|
||||
/// 客户信息.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class CustomerListOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键.
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户编号.
|
||||
/// </summary>
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户名称.
|
||||
/// </summary>
|
||||
public string customerName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址.
|
||||
/// </summary>
|
||||
public string address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
public string name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 联系方式.
|
||||
/// </summary>
|
||||
public string contactTel { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user