duhongyu 6 anni fa
parent
commit
3e6752c700

+ 1 - 1
codegit/CallCenterApi/CallCenterApi.DAL/T_Con_Conversation.cs

@@ -129,7 +129,7 @@ namespace CallCenterApi.DAL
129 129
         {
130 130
             //该表无主键信息,请自定义主键/条件字段
131 131
             StringBuilder strSql = new StringBuilder();
132
-            strSql.Append("select  top 1  from T_Con_Conversation ");
132
+            strSql.Append("select  top 1 * from T_Con_Conversation ");
133 133
             strSql.Append(" where ID=@ID");
134 134
             SqlParameter[] parameters = {
135 135
                  new SqlParameter("@ID", SqlDbType.Int,4)

+ 1 - 1
codegit/CallCenterApi/CallCenterApi.DAL/T_Wo_WorkOrderNew.cs

@@ -288,7 +288,7 @@ namespace CallCenterApi.DAL
288 288
         {
289 289
             //该表无主键信息,请自定义主键/条件字段
290 290
             StringBuilder strSql = new StringBuilder();
291
-            strSql.Append("select  top 1 ID,WorkOrderID,CustomerName,CustomerTel,Gender,Location,Reservation,IDnumber,Department,Expert,AppointmentTime,IsMedical,Project,TranDepartment,DriveoutTime,AboutcarMan,CarTel,Condition,IsCar,TreatmentAddress,ComplaintDepartment,ComplaintTarget,IsRelevant,Remarks,Problem,IsOver,DealContents,DealTime,F_State,Files,CreateTime,Createby,CallID,IsDelete,DelTime,TypeClass from T_Wo_WorkOrderNew ");
291
+            strSql.Append("select  top 1 ID,WorkOrderID,CustomerName,CustomerTel,Gender,Location,Reservation,IDnumber,Department,Expert,AppointmentTime,IsMedical,Project,TranDepartment,DriveoutTime,AboutcarMan,CarTel,Condition,IsCar,TreatmentAddress,ComplaintDepartment,ComplaintTarget,IsRelevant,Remarks,Problem,IsOver,DealContents,DealTime,F_State,Files,CreateTime,Createby,CallID,IsDelete,DelTime,TypeClass,DealBy from T_Wo_WorkOrderNew ");
292 292
             strSql.Append(" where ID=@ID");
293 293
             SqlParameter[] parameters = {
294 294
                  new SqlParameter("@ID", SqlDbType.BigInt)