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.
24 lines
486 B
C#
24 lines
486 B
C#
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
|
|
{
|
|
///// <summary>
|
|
///// 主键
|
|
///// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 锁定状态 false 解锁 true 锁定
|
|
/// </summary>
|
|
public bool LockStatus { get; set; }
|
|
}
|
|
}
|