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 DS.WMS.Core.Op.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 舱位标签
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BookingLabelBaseDto
|
|
|
|
|
{
|
|
|
|
|
public long? Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签使用范围 1-舱位
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Scope { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 颜色
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Color { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 正则匹配
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string RegexPatternTxt { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签绑定Dto类
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BindLabelDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签主键列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long[] LabelIdArray { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务主键列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long[] BusinessIdArray { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BookingLabelPageListInput : PageInputBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标签使用范围 1-舱位
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? Scope { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|