yangpeixing
7 天以前 6cb85536a0b7edf936cfc7b68502c858068c140f
1
2
3
4
5
6
7
8
9
10
11
12
13
using WIDESEA_DTO.Basic;
 
namespace WIDESEA_WMSServer.Controllers;
 
[Route("api/BoxingInfoHty")]
[ApiController]
public class BoxingInfoHtyController : ApiBaseController<IBoxingInfoHtyService, DtBoxingInfo>
{
    public BoxingInfoHtyController(IBoxingInfoHtyService service) : base(service)
    {
    }
 
}