You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 派车任务台账保存
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TruckPageDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TaskPKId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车队ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<long> TruckId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车队代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TruckCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车队代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TruckName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 保存完是否直接发送派车
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsSendDispatch { get; set; } = false;
|
|
|
|
|
}
|
|
|
|
|
}
|