namespace Yw.Application
{
///
///RunDbFirst
///
[Route("Run/DbFirst")]
[ApiDescriptionSettings("Run", Name = "DbFirst", Order = 10000)]
public class RunDbFirst_Controller : IDynamicApiController
{
///
/// 初始化
///
[Route("Initial@V1.0")]
[HttpGet]
public bool Initial()
{
var bol = Yw.Service.Run.DbFirstHelper.Initial(out string Msg);
if (!bol)
{
throw YOops.Oh(eResultCode.Alert, InternalErrorCodes.L001, Msg);
}
return bol;
}
}
}