94 lines
2.6 KiB
C#
94 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
|
|
namespace ZR.Model.MES.wms
|
|
{
|
|
/// <summary>
|
|
/// 承运商
|
|
///</summary>
|
|
[SugarTable("wms_carrier")]
|
|
public class WmsCarrier
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 编号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "carrier_no")]
|
|
public string CarrierNo { get; set; }
|
|
/// <summary>
|
|
/// 名称
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "carrier_name")]
|
|
public string CarrierName { get; set; }
|
|
/// <summary>
|
|
/// 地址
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "address")]
|
|
public string Address { get; set; }
|
|
/// <summary>
|
|
/// 手机号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "mobile")]
|
|
public string Mobile { get; set; }
|
|
/// <summary>
|
|
/// 座机号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "tel")]
|
|
public string Tel { get; set; }
|
|
/// <summary>
|
|
/// 联系人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "contact")]
|
|
public string Contact { get; set; }
|
|
/// <summary>
|
|
/// 级别
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "level")]
|
|
public string Level { get; set; }
|
|
/// <summary>
|
|
/// Email
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "email")]
|
|
public string Email { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 删除标识
|
|
/// 默认值: 0
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "del_flag")]
|
|
public byte DelFlag { get; set; }
|
|
/// <summary>
|
|
/// 创建人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "create_by")]
|
|
public long? CreateBy { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "create_time")]
|
|
public DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
|
/// 修改人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "update_by")]
|
|
public long? UpdateBy { get; set; }
|
|
/// <summary>
|
|
/// 修改时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "update_time")]
|
|
public DateTime? UpdateTime { get; set; }
|
|
}
|
|
}
|