管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2023-10-12 7e063d4b2812aeaabc247c2c3f0fc5b12b5478e8
MoonExp/Models/ExportArgs.cs
@@ -95,15 +95,21 @@
        public String wmtsUrl { set; get; }
        /// <summary>
        /// 图层ID集合
        /// </summary>
        public List<int> layerIds { set; get; }
        /// <summary>
        /// 设置默认值
        /// </summary>
        public void SetDefault()
        {
            if (string.IsNullOrWhiteSpace(title)) title = "管道基础大数据平台";
            if (string.IsNullOrWhiteSpace(title)) title = string.Empty;
            if (string.IsNullOrWhiteSpace(province)) province = string.Empty;
            if (string.IsNullOrWhiteSpace(scale)) scale = string.Empty;
            if (string.IsNullOrWhiteSpace(resolution)) resolution = string.Empty;
            if (string.IsNullOrWhiteSpace(date)) date = DateTime.Now.ToString("yyyy.MM.dd");
            if (null == layerIds) layerIds = new List<int>();
            this.dpi = GetDpi(this.pageSize);
        }