移动系统liao
2024-07-30 306ab8865840b2637590abb6e670e5614446f24d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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; }
    }
}