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