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)
| {
| }
|
| }
|
|