using SqlSugar;
namespace YBDevice.Entity
{
///
/// 物流信息
///
[SugarTable("YB_ExPress", TableDescription = "物流信息", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
public class YB_ExPress
{
///
///
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public System.Int32 Id { get; set; }
///
/// 物流名称
///
[SugarColumn(ColumnDescription = "物流名称", ColumnDataType = "nvarchar(50)")]
public System.String Name { get; set; }
///
/// 联系人
///
[SugarColumn(ColumnDescription = "联系人", ColumnDataType = "nvarchar(50)")]
public System.String Contact { get; set; }
///
/// 联系电话
///
[SugarColumn(ColumnDescription = "联系电话", ColumnDataType = "varchar(20)")]
public System.String Phone { get; set; }
///
/// 备注
///
[SugarColumn(ColumnDescription = "备注", ColumnDataType = "nvarchar(200)")]
public System.String Remark { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDescription = "创建时间")]
public System.DateTime CreateTime { get; set; }
}
}