wanshenmean
2024-09-13 319e8729b47c96e3a3717c5a40cd5df867d65ce5
1
2
3
4
5
6
7
8
9
10
namespace WIDESEA_WMSServer.Controllers;
 
[Route("api/[controller]")]
[ApiController]
public class PointStackerRelationController : ApiBaseController<IPointStackerRelationService, PointStackerRelation>
{
    public PointStackerRelationController(IPointStackerRelationService service) : base(service)
    {
    }
}