You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
784 B
29 lines
784 B
3 weeks ago
|
using SqlSugar;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace ReZero.SuperAPI
|
||
|
{
|
||
|
internal partial class InterfaceListInitializerProvider
|
||
|
{
|
||
|
List<ZeroInterfaceList> zeroInterfaceList = new List<ZeroInterfaceList>() { };
|
||
|
public InterfaceListInitializerProvider(List<ZeroInterfaceList> zeroInterfaceList)
|
||
|
{
|
||
|
this.zeroInterfaceList = zeroInterfaceList;
|
||
|
}
|
||
|
|
||
|
internal void Set()
|
||
|
{
|
||
|
AddInit_ZeroInterfaceList();
|
||
|
AddInit_InterfaceCategory();
|
||
|
AddInit_DatabaseInfo();
|
||
|
AddInit_CodeList();
|
||
|
AddInit_EntityInfo();
|
||
|
AddInit_EntityColumnInfo();
|
||
|
AddInit_Template();
|
||
|
AddInit_Other();
|
||
|
}
|
||
|
}
|
||
|
}
|