Merge branch 'dev' of http://123.207.203.228:3000/server/HuanMengProject into dev
This commit is contained in:
commit
a8e7e81653
|
|
@ -42,5 +42,10 @@ namespace HuanMeng.MiaoYu.Model.Dto
|
||||||
/// 创作中心:人物模型信息
|
/// 创作中心:人物模型信息
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public CreateCharacterInfo CharacterInfo { get; set; }
|
public CreateCharacterInfo CharacterInfo { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 记忆卡数量
|
||||||
|
/// </summary>
|
||||||
|
public int MemoryCardCount { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
using HuanMeng.MiaoYu.WebApi.Base;
|
||||||
|
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace HuanMeng.MiaoYu.WebApi.Controllers
|
||||||
|
{ /// <summary>
|
||||||
|
/// 商城控制器
|
||||||
|
/// </summary>
|
||||||
|
[Route("api/[controller]/[action]")]
|
||||||
|
[ApiController]
|
||||||
|
public class MallController : MiaoYuControllerBase
|
||||||
|
{
|
||||||
|
public MallController(IServiceProvider _serviceProvider) : base(_serviceProvider)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
//public Task<>
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user