管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2022-11-08 788a78efe33a76ffa80ba6b8430a593cd883c508
ExportMap/Controllers/ExportController.cs
@@ -1,4 +1,5 @@
using System;
using LFServer.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
@@ -10,9 +11,16 @@
    public class ExportController : ApiController
    {
        [HttpPost]
        public void start([FromBody]string value)
        public void Start([FromBody]ExportArgs args)
        {
            if (args == null ||
                string.IsNullOrWhiteSpace(args.layers)||
                (args.xmin == 0 && args.ymin == 0 && args.xmax == 0 && args.ymax == 0))
            {
                return;
            }
            args.SetDefault();
        }
    }
}