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.
41 lines
874 B
41 lines
874 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.ProjectManager.Customers
|
|
{
|
|
public class CreateCustomerDtoInputDto
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
/// <summary>
|
|
/// 简称
|
|
/// </summary>
|
|
public string ShortName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 负责人
|
|
/// </summary>
|
|
public string PersonInCharge { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
public string ContactNumber { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 联系地址
|
|
/// </summary>
|
|
public string ContactAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public char IsActive { get; set; }
|
|
}
|
|
}
|