yanjinhui
2026-02-21 207071d20e664a1d50863418d852624760f8b6da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_IBasicInfoService;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_Server.Controllers.BasicInfo
{
    /// <summary>
    /// 凯乐士货位信息
    /// </summary>
    [Route("api/kLSLocationInfo")]
    [ApiController]
    public class KLSLocationInfoController : ApiBaseController<IKLSLocationInfoService, Dt_KLSLocationInfo>
    {
        public KLSLocationInfoController(IKLSLocationInfoService service) : base(service)
        {
 
        }
    }
}