Files
shanghaigangxiangtuzhuangMES/ZR.Model/MES/wms/POJO/query/CustomerQuery.cs

39 lines
1.4 KiB
C#
Raw Normal View History

namespace ZR.Model.MES.wms.POJO.query
{
public class CustomerQuery
{
// @ApiModelProperty("客户编号 精确匹配")
private String customerNo;
// @ApiModelProperty("客户名称 精确匹配")
private String customerNameLike;
// @ApiModelProperty("客户地址 精确匹配")
private String address;
// @ApiModelProperty("手机号 精确匹配")
private String mobile;
// @ApiModelProperty("座机号 精确匹配")
private String tel;
// @ApiModelProperty("联系人 精确匹配")
private String customerPerson;
// @ApiModelProperty("级别 精确匹配")
private String customerLevel;
// @ApiModelProperty("Email 精确匹配")
private String email;
public string CustomerNo { get => customerNo; set => customerNo = value; }
public string CustomerNameLike { get => customerNameLike; set => customerNameLike = value; }
public string Address { get => address; set => address = value; }
public string Mobile { get => mobile; set => mobile = value; }
public string Tel { get => tel; set => tel = value; }
public string CustomerPerson { get => customerPerson; set => customerPerson = value; }
public string CustomerLevel { get => customerLevel; set => customerLevel = value; }
public string Email { get => email; set => email = value; }
}
}