using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO.Basic { /// /// 博思通供应商接收实体 /// [ModelValidate] public class BSTSupplierDTO { /// /// 操作类型 /// [PropertyValidate("操作类型", NotNullAndEmpty = true)] public int Way { get; set; } /// /// 供应商唯一标识ID /// [PropertyValidate("供应商唯一标识ID", NotNullAndEmpty = true)] public int VendId { get; set; } /// /// 供应商编号/代码 /// [PropertyValidate("供应商编号/代码", NotNullAndEmpty = true)] public string VendNo { get; set; } /// /// 供应商简称 /// [PropertyValidate("供应商简称", NotNullAndEmpty = true)] public string ShortName { get; set; } /// /// 商务联系人 /// [PropertyValidate("summary", NotNullAndEmpty = true)] public string BusinessContact { get; set; } /// /// 联系电话 /// [PropertyValidate("联系电话", NotNullAndEmpty = true)] public string Tel { get; set; } /// /// 公司地址 /// [PropertyValidate("公司地址", NotNullAndEmpty = true)] public string Address { get; set; } /// /// 状态标识(1表示启用/有效状态) /// [PropertyValidate("状态标识", NotNullAndEmpty = true)] public int Status { get; set; } } }