Просмотр исходного кода

Merge branch 'master' of http://192.168.1.222:3000/zhoufan/SQ12345_Api

zhengbingbing лет назад: 6
Родитель
Сommit
def0290b75

+ 8 - 0
CallCenterApi/CallCenterApi.Interface/CallCenterApi.Interface/Controllers/workorder/WorkOrderController.cs

@@ -9267,6 +9267,10 @@ namespace CallCenterApi.Interface.Controllers.workorder
9267 9267
                 string deptids = RequestString.GetFormString("deptids");//通告单位
9268 9268
                 string noticereson = RequestString.GetFormString("noticereson");//通告原因
9269 9269
 
9270
+                //2020-3-4添加通告选项
9271
+                int noticeid = RequestString.GetInt("noticeid", 0);//通告选项id
9272
+                string noticeinfo = RequestString.GetFormString("noticeinfo");//通告内容
9273
+
9270 9274
                 Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
9271 9275
                 Model.T_Bus_AssignedInfo modelT_Bus_AssignedInfo = assignBLL.GetNewModelByWorkOrderID(workorderid);
9272 9276
                 if (modelT_Bus_WorkOrder != null)
@@ -9398,6 +9402,10 @@ namespace CallCenterApi.Interface.Controllers.workorder
9398 9402
                 string deptids = RequestString.GetFormString("deptids");//通告单位
9399 9403
                 string noticereson = RequestString.GetFormString("noticereson");//通告原因
9400 9404
 
9405
+                //2020-3-4添加通告选项
9406
+                int noticeid = RequestString.GetInt("noticeid", 0);//通告选项id
9407
+                string noticeinfo = RequestString.GetFormString("noticeinfo");//通告内容
9408
+
9401 9409
                 Model.T_Bus_WorkOrder modelT_Bus_WorkOrder = workorderBLL.GetModel(workorderid);
9402 9410
                 Model.T_Bus_AssignedInfo modelT_Bus_AssignedInfo = assignBLL.GetNewModelByWorkOrderID(workorderid);
9403 9411
                 if (modelT_Bus_WorkOrder != null)

+ 20 - 0
CallCenterApi/CallCenterApi.Model/T_Bus_WorkOrder.cs

@@ -70,6 +70,8 @@ namespace CallCenterApi.Model
70 70
         private decimal? _f_longitude;
71 71
         private decimal? _f_latitude;
72 72
         private string _f_maindeptid3;
73
+        private string _f_noticeinfo;
74
+        private int?  _f_noticeid;
73 75
         /// <summary>
74 76
         /// 
75 77
         /// </summary>
@@ -550,6 +552,24 @@ namespace CallCenterApi.Model
550 552
             set { _f_maindeptid3 = value; }
551 553
             get { return _f_maindeptid3; }
552 554
         }
555
+
556
+        /// <summary>
557
+        /// 通报内容
558
+        /// </summary>
559
+        public string F_NoticeInfo
560
+        {
561
+            set { _f_noticeinfo = value; }
562
+            get { return _f_noticeinfo; }
563
+        }
564
+
565
+        /// <summary>
566
+        /// 通报内容id
567
+        /// </summary>
568
+        public int? F_NoticeID
569
+        {
570
+            set { _f_noticeid = value; }
571
+            get { return _f_noticeid; }
572
+        }
553 573
         #endregion Model
554 574
 
555 575
     }