添加数据库迁移

This commit is contained in:
2021-02-24 10:00:37 +08:00
parent cd23716d1b
commit 12ecdf3159
13 changed files with 578 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QRCodeService.Controllers
{
[Route("api/v1/[controller]")]
public class AppController:ControllerBase
{
}
}