刘磊
2025-11-17 efbeb93b3d454f06d65dbcc68ad828cc95bc9404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Common;
using WIDESEA_DTO;
 
namespace WIDESEA_IStorageBasicService;
 
public interface ILocationInfoService : IService<DtLocationInfo>
{
 
    Task<WebResponseContent> initializeLocation(int locationID);
 
    WebResponseContent CreateLocation(int x, int y, int z, int locType, int areaId);
 
    WebResponseContent LocationEnable(SaveModel saveModel);
 
    object GetLocationStatu(Area area);
}