using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 派车同步
///
public class BookingTruckSyncDto: BookingTruckDto
{
///
/// 操作类型 AddOrUpdate-新增或更新 Delete-作废
///
public string OperType { get; set; }
///
/// 租户ID
///
public long TenantId { get; set; }
}
}