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