using Chuanyin.Attribute;
|
using CoreCms.Net.Model.Entities.baseModel;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using static SKIT.FlurlHttpClient.Wechat.Api.Models.CgibinExpressDeliveryOpenMessageGetDeliveryListResponse.Types;
|
|
namespace CoreCms.Net.Model.Entities.baifenbingfa.DistributionSendOder
|
{
|
/// <summary>
|
/// 供应商发货配发记录
|
/// </summary>
|
[SugarTable(TableDescription = "供应商发货配发记录")]
|
|
public partial class DistributionSendOder: BFBaseModel
|
{
|
|
|
/// <summary>
|
/// ID
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
|
public int id { get; set; }
|
/// <summary>
|
/// 分配供应商用户ID
|
/// </summary>
|
[SugarColumn(ColumnDescription = "分配供应商用户ID", IsNullable =true)]
|
public int? userID { get; set; }
|
/// <summary>
|
/// 分配供应商ID
|
/// </summary>
|
[SugarColumn(ColumnDescription = "分配供应商ID")]
|
public int distributionID { get; set; }
|
|
/// <summary>
|
/// 分配时间
|
/// </summary>
|
[SugarColumn(ColumnDescription = "分配时间", IsNullable = true)]
|
public DateTime? sendTime { get; set; }
|
|
/// <summary>
|
/// 确认时间
|
/// </summary>
|
[SugarColumn(ColumnDescription = "确认时间", IsNullable = true)]
|
public DateTime? activeTime { get; set; }
|
|
|
/// <summary>
|
/// 原因
|
/// </summary>
|
[SugarColumn(ColumnDescription = "原因", IsNullable = true)]
|
public string description { get; set; }
|
|
/// <summary>
|
/// 分配操作员ID
|
/// </summary>
|
[SugarColumn(ColumnDescription = "分配操作员ID", IsNullable = true)]
|
public int? sendMangerID { get; set; }
|
/// <summary>
|
/// 配送单ID
|
/// </summary>
|
[SugarColumn(ColumnDescription = "配送单Id")]
|
public string deliveryID { get; set; }
|
/// <summary>
|
/// 配送费用
|
/// </summary>
|
[SugarColumn(ColumnDescription = "配送费用",DefaultValue ="0")]
|
public decimal amount { get; set; }= 0;
|
|
/// <summary>
|
/// 配送状态
|
/// </summary>
|
[SugarColumn(ColumnDescription = "配送状态",IsNullable =true)]
|
public sendDistributionAcceptType? sendDistributionAccept { get; set; }
|
|
/// <summary>
|
/// 应聘职务
|
/// </summary>
|
[Navigate(NavigateType.OneToOne, nameof(deliveryID))]
|
public CoreCmsBillDelivery delivery { get; set; }
|
}
|
}
|