You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.4 KiB
C#

11 months ago
namespace Ds.Modules.DsEntity.Template
{
/// <summary>
/// 派车厂家
/// </summary>
public class Ds_Template_DispatchCar : BaseEntityTenant
{
/// <summary>
/// 代码
/// </summary>
public string DispatchCore { get; set; }
/// <summary>
/// 厂家名称
/// </summary>
public string DispatchCarName { get; set; }
/// <summary>
/// 厂家地址
/// </summary>
public string Address { get; set; }
/// <summary>
/// 厂家电话
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 厂家联系人
/// </summary>
public string Contact { get; set; }
/// <summary>
/// 厂家联系人电话
/// </summary>
public string ContactPhone { get; set; }
/// <summary>
/// 厂家联系人邮箱
/// </summary>
public string ContactEmail { get; set; }
/// <summary>
/// 厂家联系人微信
/// </summary>
public string ContactWechat { get; set; }
/// <summary>
/// 厂家联系人地址
/// </summary>
public string ContactAddress { get; set; }
///
/// <summary>
/// 厂家联系人备注
/// </summary>
public string ContactRemark { get; set; }
}
}