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