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
{
///
/// ActiveDistributionSendOder mq模型
///
public class ActiveDistributionSendOderMQ
{
///
/// 订单状态
///
public sendDistributionAcceptType? SendOderActive { get; set; }
///
/// 描述
///
public string? Dec { get; set; }
///
/// 发送单ID
///
public string deliveryID { get; set; }
///
/// 所属用户ID
///
public int userID { get; set; }
}
}