| | |
| | | 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> |
| | | [SugarTable(TableDescription = "供应商发货配发记录")] |
| | | [SqlCodeFirst] |
| | | public class DistributionSendOder: BFBaseModel |
| | | |
| | | public partial class DistributionSendOder: BFBaseModel |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// ID |
| | | /// </summary> |
| | |
| | | /// </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; } |
| | | } |
| | | } |