ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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; }
    }
}