namespace Furion.Extras.iWare.Wms.Util.LowCode.Front.Att { [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public class FrontTypeBindDatabaseAttribute : Attribute { public FrontTypeBindDatabaseAttribute(string providerName, Type dbType, string dbParam = null, Type dtoType = null, string suffix = null) { this.ProviderName = providerName; this.Suffix = suffix; this.DbType = dbType; this.DtoType = dtoType; this.DbParam = dbParam; } public string ProviderName { get; set; } public string Suffix { get; set; } public Type DbType { get; set; } public Type DtoType { get; set; } public string DbParam { get; set; } } }