摘要: /// <summary> /// 组织部门 /// </summary> public class ArchvieOrganizationAppService : RunGoAppServiceBase<Model.Archvie_Organization, DetailArchvieOrgani 阅读全文
posted @ 2020-01-08 15:32 苏苏苏en 阅读(1139) 评论(0) 推荐(0) 编辑
摘要: List<ScreenList> All = new List<ScreenList>(); if (string.IsNullOrEmpty(roomrowguid)) { ScreenList viewroom = new ScreenList(); viewroom.Key = "区域"; v 阅读全文
posted @ 2020-01-08 15:30 苏苏苏en 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 之前有讲过ios系统的时间显示不支持‘-’所以转换成‘/’但是不知道是不是系统不兼容的问题,只要时间做了格式转换就会出现相差8小时的问题,如果只是把‘-’换成‘/’就没有这种问题,这里有两种解决方案 一:后端统一处理时间格式,这里有个前提就是前端都需要这种格式的时间 在startup.cs中进行配置 阅读全文
posted @ 2020-01-08 15:21 苏苏苏en 阅读(1662) 评论(0) 推荐(0) 编辑
摘要: public class MaintenanceDutyPsersonDto { /// <summary> /// 值班人员(组织兵力唯一标识) /// </summary> [StringLength(50)] public string MilitaryRowGuid { get; set; 阅读全文
posted @ 2020-01-08 15:08 苏苏苏en 阅读(1007) 评论(0) 推荐(0) 编辑
摘要: ① 获取当月开始日期和结束日期 DateTime currentTime = DateTime.Now; DateTime CurrentMonthStart = DateTime.Parse($"{currentTime.Year}-{currentTime.Month+1}-1");//当月开始 阅读全文
posted @ 2020-01-08 14:54 苏苏苏en 阅读(463) 评论(0) 推荐(0) 编辑