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.
Gateway/Proxy/Entities/Initializer.cs

23 lines
476 B
C#

2 years ago
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;
10 months ago
namespace UMC.ITME.Entities
2 years ago
{
10 months ago
[Web.Apiumc]
2 years ago
public class Initializer : UMC.Data.Sql.Initializer
2 years ago
{
10 months ago
public override string Name => "ITME";
2 years ago
10 months ago
public override string Caption => "IT管理引擎";
2 years ago
public override bool IsRegisterSetup => true;
2 years ago
}
}