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