mirror of https://gitee.com/apiumc/Gateway.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
476 B
C#
23 lines
476 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using UMC.Data;
|
|
using UMC.Data.Entities;
|
|
using UMC.Data.Sql;
|
|
using UMC.Net;
|
|
|
|
namespace UMC.ITME.Entities
|
|
{
|
|
[Web.Apiumc]
|
|
public class Initializer : UMC.Data.Sql.Initializer
|
|
{
|
|
|
|
public override string Name => "ITME";
|
|
|
|
public override string Caption => "IT管理引擎";
|
|
public override bool IsRegisterSetup => true;
|
|
|
|
}
|
|
}
|