username@email.com
2024-07-02 89879d47da4c63103ec38595c5dd014a12c01cca
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
using CoreCms.Net.Model.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CoreCms.Net.DTO
{
    /// <summary>
    /// ActiveDistributionSendOder  mq模型
    /// </summary>
    public class ActiveDistributionSendOderMQ
    {
        /// <summary>
        /// 订单状态
        /// </summary>
        public sendDistributionAcceptType? SendOderActive { get; set; }
        /// <summary>
        /// 描述
        /// </summary>
        public string?  Dec { get; set; }
 
        /// <summary>
        /// 发送单ID
        /// </summary>
        public string deliveryID { get; set; }
 
        /// <summary>
        /// 所属用户ID
        /// </summary>
        public int userID {  get; set; }
 
    }
}