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