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.
25 lines
548 B
C#
25 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 派车同步
|
|
/// </summary>
|
|
public class BookingTruckSyncDto: BookingTruckDto
|
|
{
|
|
/// <summary>
|
|
/// 操作类型 AddOrUpdate-新增或更新 Delete-作废
|
|
/// </summary>
|
|
public string OperType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 租户ID
|
|
/// </summary>
|
|
public long TenantId { get; set; }
|
|
}
|
|
}
|