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.

45 lines
859 B
C#

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 BookingLabelRegexDto
{
/// <summary>
/// 字段名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 操作类型
/// </summary>
public string oper { get; set; }
/// <summary>
/// 值
/// </summary>
public string val { get; set; }
/// <summary>
/// 是主要条件,必需满足
/// </summary>
public bool master { get; set; }
}
public enum LabelRegexOperEnum
{
equal,
like,
startwith,
notexists,
notequal,
notstartwith
}
}