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.
BookingHeChuan/Myshipping.Application/Service/BookingLabel/Dto/BookingLabelRegexDto.cs

35 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class BookingLabelRegexDto
{
/// <summary>
/// 字段名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 操作类型
/// </summary>
public string oper { get; set; }
/// <summary>
/// 值
/// </summary>
public string val { get; set; }
}
public enum LabelRegexOperEnum
{
equal,
like,
startwith,
notexists
}
}