using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.DataSync.Dto
{
public class BookingOrderLock
{
/////
///// 主键
/////
public long BookingId { get; set; }
///
/// 锁定状态 false 解锁 true 锁定
///
public bool LockStatus { get; set; }
///
/// 操作用户名称
///
public string UserName { get; set; }
}
}