APSM/bin/Release/APSM.dllBinary files differ
APSM/bin/Release/APSM.pdbBinary files differ
APSM/bin/Release/BLL.dllBinary files differ
APSM/bin/Release/BLL.pdbBinary files differ
APSM/bin/Release/BaseSet.dllBinary files differ
APSM/bin/Release/BaseSet.pdbBinary files differ
APSM/bin/Release/DAL.dllBinary files differ
APSM/bin/Release/DAL.pdbBinary files differ
APSM/bin/Release/Model.dllBinary files differ
APSM/bin/Release/Model.pdbBinary files differ
APSM/bin/Release/PlanM.dllBinary files differ
APSM/bin/Release/PlanM.pdbBinary files differ
APSM/bin/Release/WarM.dllBinary files differ
APSM/bin/Release/WarM.pdbBinary files differ
APSM/bin/Release/WorkM.dllBinary files differ
APSM/bin/Release/WorkM.pdbBinary files differ
BLL/bin/Release/BLL.dllBinary files differ
BLL/bin/Release/BLL.pdbBinary files differ
BLL/bin/Release/DAL.dllBinary files differ
BLL/bin/Release/DAL.pdbBinary files differ
BLL/bin/Release/Model.dllBinary files differ
BLL/bin/Release/Model.pdbBinary files differ
BaseSet/bin/Release/BLL.dllBinary files differ
BaseSet/bin/Release/BLL.pdbBinary files differ
BaseSet/bin/Release/BaseSet.dllBinary files differ
BaseSet/bin/Release/BaseSet.pdbBinary files differ
BaseSet/bin/Release/DAL.dllBinary files differ
BaseSet/bin/Release/DAL.pdbBinary files differ
BaseSet/bin/Release/Model.dllBinary files differ
BaseSet/bin/Release/Model.pdbBinary files differ
DAL/DAL.csproj
@@ -93,6 +93,7 @@ <Compile Include="ClsPM_WorkPlanMonthBillMain.cs" /> <Compile Include="æºå\InterFaceæºå\Cls_S_IF_ICMOBillList_CusBarCodeBill.cs" /> <Compile Include="æºå\InterFaceæºå\Cls_S_IF_ICMOReportBillList_CusBarCodeBill.cs" /> <Compile Include="ç³»ç»å ¬ç¨\ClsXt_DefineBillMainSet.cs" /> <Compile Include="è´¨æ£ç®¡ç\ClsQC_EnvironmentTestDotCheckBillMain.cs" /> <Compile Include="è´¨æ£ç®¡ç\ClsQC_MonthTarGetBill.cs" /> <Compile Include="ç产管ç\设å¤ç®¡ç\ClsSb_EquipRepairSignBill.cs" /> DAL/bin/Release/DAL.dllBinary files differ
DAL/bin/Release/DAL.pdbBinary files differ
DAL/bin/Release/Model.dllBinary files differ
DAL/bin/Release/Model.pdbBinary files differ
DAL/ϵͳ¹«ÓÃ/ClsXt_DefineBillMainSet.cs
New file @@ -0,0 +1,254 @@ using System; using System.Collections.Generic; using System.Text; using System.Data; namespace DAL { public class ClsXt_DefineBillMainSet : DBUtility.ClsXt_BaseBill { public Model.ClsXt_DefineBillMainSetMain omodel = new Model.ClsXt_DefineBillMainSetMain(); public List<Model.ClsXt_DefineBillMainSetSub> DetailColl = new List<Model.ClsXt_DefineBillMainSetSub>(); public ClsXt_DefineBillMainSet() { base.MvarItemKeyForWeb = ""; base.MvarItemKeySubForWeb = "Xt_DefineBillMainSet"; base.MvarItemKeySub = "Xt_DefineBillMainSetSub"; base.MvarItemKeySub2 = ""; base.MvarItemKeySub3 = ""; base.MvarItemKeySub4 = ""; base.MvarItemKey= "Xt_DefineBillMainSetMain"; base.MvarReportTitle="表头èªå®ä¹åæ®"; base.BillType=""; base.HBillSubType = ""; } #region åºå®ä»£ç ~ClsXt_DefineBillMainSet() { DetailColl = null; } #endregion èªå®ä¹æ¹æ³ #region ä¿®æ¹åæ® public override bool ModifyBill(Int64 lngBillKey, ref string sReturn) { try { oCn.BeginTran(); omodel.HInterID = lngBillKey; //æ´æ°ä¸»è¡¨ string mainSql = "update Xt_DefineBillMainSetMain set " + "HInterID = '" + omodel.HInterID + "'" + ",HModName = '" + omodel.HModName + "'" + ",HUser = '" + omodel.HUser + "'" + ",HTableName = '" + omodel.HTableName + "'" + ",HDataViewName = '" + omodel.HDataViewName + "'" + ",HDataProcName = '" + omodel.HDataProcName + "'" + ",HUpdater = '" + omodel.HUpDater + "'" + ",HUpdateDate = " + "getdate()" + "" + ",HRowElementCount = '" + omodel.HRowElementCount + "'" + " where HInterID=" + lngBillKey.ToString(); oCn.RunProc(mainSql); //å é¤å表 DeleteBillSub(lngBillKey); //æå ¥å表 int HEntryID = 1; foreach (Model.ClsXt_DefineBillMainSetSub oSub in DetailColl) { string subSql = "Insert into Xt_DefineBillMainSetSub " + " (HInterID,HEntryID,HArrangeOrder,HArrangeOrderSub,HIsHide,HIsDisabled,HIsMust,HParentElementID,HElementID" + ",HElementLabel,HElementType,HFieldMaxLength,HDefaultValue,HFieldName,HFieldDataType,HRelateUrl,HSubWindowBackData" + ",HSubWindowBackDataMethodName,HSelectContent" + ") values(" + "'" + omodel.HInterID + "'" + ",'" + (HEntryID++) + "'" + ",'" + oSub.HArrangeOrder + "'" + ",'" + oSub.HArrangeOrderSub + "'" + ",'" + (oSub.HIsHide ? 1 : 0) + "'" + ",'" + (oSub.HIsDisabled ? 1 : 0) + "'" + ",'" + (oSub.HIsMust ? 1 : 0) + "'" + ",'" + oSub.HParentElementID + "'" + ",'" + oSub.HElementID + "'" + ",'" + oSub.HElementLabel + "'" + ",'" + oSub.HElementType + "'" + ",'" + oSub.HFieldMaxLength + "'" + ",'" + oSub.HDefaultValue + "'" + ",'" + oSub.HFieldName + "'" + ",'" + oSub.HFieldDataType + "'" + ",'" + oSub.HRelateUrl + "'" + ",'" + oSub.HSubWindowBackData + "'" + ",'" + oSub.HSubWindowBackDataMethodName + "'" + ",'" + oSub.HSelectContent + "'" + ") "; oCn.RunProc(subSql); } sReturn = "ä¿®æ¹åæ®æåï¼"; oCn.Commit(); return true; } catch (Exception e) { sReturn = e.Message; oCn.RollBack(); throw (e); } } #endregion #region æ°å¢åæ® public override bool AddBill(ref string sReturn) { try { string sql_0 = "select top(1)* from Xt_DefineBillMainSetMain order by HInterID desc"; DataSet dataSet = oCn.RunProcReturn(sql_0, "Xt_DefineBillMainSetMain"); if(dataSet!=null && dataSet.Tables[0].Rows.Count > 0) { omodel.HInterID = DBUtility.ClsPub.isLong(dataSet.Tables[0].Rows[0]["HInterID"]) + 1; } else { omodel.HInterID = 1; } oCn.BeginTran(); //主表 string mainSql = "Insert Into Xt_DefineBillMainSetMain" + "(HInterID,HModName,HUser,HTableName,HDataViewName,HDataProcName,HMaker,HMakeDate,HRowElementCount) " + " values(" + "'" + omodel.HInterID + "'" + ",'" + omodel.HModName + "'" + ",'" + omodel.HUser + "'" + ",'" + omodel.HTableName + "'" + ",'" + omodel.HDataViewName + "'" + ",'" + omodel.HDataProcName + "'" + ",'" + omodel.HMaker + "'" + "," + "getdate()" + "" + ",'" + omodel.HRowElementCount + "'" + ")"; oCn.RunProc(mainSql); //æå ¥å表 int HEntryID = 1; foreach (Model.ClsXt_DefineBillMainSetSub oSub in DetailColl) { string subSql = "Insert into Xt_DefineBillMainSetSub " + " (HInterID,HEntryID,HArrangeOrder,HArrangeOrderSub,HIsHide,HIsDisabled,HIsMust,HParentElementID,HElementID" + ",HElementLabel,HElementType,HFieldMaxLength,HDefaultValue,HFieldName,HFieldDataType,HRelateUrl,HSubWindowBackData" + ",HSubWindowBackDataMethodName,HSelectContent" + ") values(" + "'" + omodel.HInterID + "'" + ",'" + (HEntryID++) + "'" + ",'" + oSub.HArrangeOrder + "'" + ",'" + oSub.HArrangeOrderSub + "'" + ",'" + (oSub.HIsHide?1:0) + "'" + ",'" + (oSub.HIsDisabled?1:0) + "'" + ",'" + (oSub.HIsMust?1:0) + "'" + ",'" + oSub.HParentElementID + "'" + ",'" + oSub.HElementID + "'" + ",'" + oSub.HElementLabel + "'" + ",'" + oSub.HElementType + "'" + ",'" + oSub.HFieldMaxLength + "'" + ",'" + oSub.HDefaultValue + "'" + ",'" + oSub.HFieldName + "'" + ",'" + oSub.HFieldDataType + "'" + ",'" + oSub.HRelateUrl + "'" + ",'" + oSub.HSubWindowBackData + "'" + ",'" + oSub.HSubWindowBackDataMethodName + "'" + ",'" + oSub.HSelectContent + "'" + ") "; oCn.RunProc(subSql); } sReturn = "æ°å¢åæ®æåï¼"; oCn.Commit(); return true; } catch (Exception e) { sReturn = e.Message; oCn.RollBack(); throw (e); } } #endregion #region æ¾ç¤ºåæ® public override bool ShowBill(Int64 lngBillKey, ref string sReturn) { try { //æ¥è¯¢ä¸»è¡¨ DataSet Ds ; Ds = oCn.RunProcReturn("Select * from Xt_DefineBillMainSetMain Where HInterID=" + lngBillKey.ToString(), "Xt_DefineBillMainSetMain"); if(Ds.Tables[0].Rows.Count==0) { sReturn = "åæ®æªæ¾å°ï¼"; return false; } //åºå®èµå¼=========================================== omodel.HInterID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HInterID"]); omodel.HModName = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HModName"]); omodel.HUser = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HUser"]); omodel.HTableName = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HTableName"]); omodel.HDataViewName = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HDataViewName"]); omodel.HDataProcName = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HDataProcName"]); omodel.HMaker = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HMaker"]); omodel.HMakeDate = Ds.Tables[0].Rows[0]["HMakeDate"].ToString().Trim(); omodel.HUpDater = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HUpDater"]); omodel.HUpDateDate = Ds.Tables[0].Rows[0]["HUpDateDate"].ToString().Trim(); omodel.HRowElementCount = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HRowElementCount"]); //å¾ªç¯ DataSet DsSub ; DsSub = oCn.RunProcReturn("Select * from Xt_DefineBillMainSetSub Where HInterID=" + lngBillKey.ToString() + " order by HEntryID ", "Xt_DefineBillMainSetSub"); DetailColl.Clear();//æ¸ ç©º for (int i = 0; i < DsSub.Tables[0].Rows.Count; i++) { Model.ClsXt_DefineBillMainSetSub oSub = new Model.ClsXt_DefineBillMainSetSub(); // åºå®èµå¼=============================================== oSub.HInterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HInterID"]); oSub.HEntryID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HEntryID"]); oSub.HArrangeOrder = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HArrangeOrder"]); oSub.HArrangeOrderSub = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HArrangeOrderSub"]); oSub.HIsHide = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HIsHide"])==1?true:false; oSub.HIsDisabled = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HIsDisabled"]) == 1 ? true : false; oSub.HIsMust = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HIsMust"]) == 1 ? true : false; oSub.HParentElementID = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HParentElementID"]); oSub.HElementID = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementID"]); oSub.HElementLabel = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementLabel"]); oSub.HElementType = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HElementType"]); oSub.HFieldMaxLength = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HFieldMaxLength"]); oSub.HDefaultValue = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HDefaultValue"]); oSub.HFieldName = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HFieldName"]); oSub.HFieldDataType = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HFieldDataType"]); oSub.HRelateUrl = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HRelateUrl"]); oSub.HSubWindowBackData = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HSubWindowBackData"]); oSub.HSubWindowBackDataMethodName = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HSubWindowBackDataMethodName"]); oSub.HSelectContent = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HSelectContent"]); DetailColl.Add(oSub); } sReturn = "æ¾ç¤ºåæ®æåï¼"; return true; } catch (Exception e) { sReturn = e.Message; throw (e); } } #endregion } } DBUtility/obj/Release/DBUtility.csproj.AssemblyReference.cacheBinary files differ
Model/Model.csproj
@@ -151,6 +151,8 @@ <Compile Include="åºç¡èµæ\åºç¡èµæ\ClsGy_TechnologyParameterType_Model .cs" /> <Compile Include="åºç¡èµæ\åºç¡èµæ\ClsGy_RestDay_Model.cs" /> <Compile Include="ç产管ç\æ¨¡å ·ç®¡ç\ClsSc_MouldMaintainPlanBillSub_Plan.cs" /> <Compile Include="ç³»ç»å ¬ç¨\ClsXt_DefineBillMainSetSub.cs" /> <Compile Include="ç³»ç»å ¬ç¨\ClsXt_DefineBillMainSetMain.cs" /> <Compile Include="è´¨æ£ç®¡ç\ClsQC_EnvironmentTestDotCheckBillMain.cs" /> <Compile Include="è´¨æ£ç®¡ç\ClsQC_EnvironmentTestDotCheckBillSub.cs" /> <Compile Include="è´¨æ£ç®¡ç\ClsQC_MonthTarGetBillMain.cs" /> Model/bin/Release/Model.dllBinary files differ
Model/bin/Release/Model.pdbBinary files differ
Model/obj/Release/Model.csproj.AssemblyReference.cacheBinary files differ
Model/obj/Release/Model.dllBinary files differ
Model/obj/Release/Model.pdbBinary files differ
Model/ϵͳ¹«ÓÃ/ClsXt_DefineBillMainSetMain.cs
New file @@ -0,0 +1,16 @@ using System; using System.Collections.Generic; using System.Text; namespace Model { public class ClsXt_DefineBillMainSetMain : DBUtility.ClsXt_BaseBillMain { public string HModName; //模åå public string HUser; //ç¨æ·å public string HTableName; //主表å public string HDataViewName; //ç¼è¾èµå¼çè§å¾å public string HDataProcName; //åå¨è¿ç¨å public long HRowElementCount; //æ¯è¡å ç´ æ° } } Model/ϵͳ¹«ÓÃ/ClsXt_DefineBillMainSetSub.cs
New file @@ -0,0 +1,27 @@ using System; using System.Collections.Generic; using System.Text; namespace Model { public class ClsXt_DefineBillMainSetSub : DBUtility.ClsXt_BaseBillSub { public long HArrangeOrder; //æåé¡ºåº public long HArrangeOrderSub; //åæåé¡ºåº public bool HIsHide; //æ¯å¦éè public bool HIsDisabled; //æ¯å¦ç¦ç¨ public bool HIsMust; //æ¯å¦å¿ å¡« public string HParentElementID; //ç¶çº§ç»ä»¶ID public string HElementID; //ç»ä»¶ID public string HElementLabel; //ç»ä»¶æ ç¾ public string HElementType; //ç»ä»¶ç±»å public long HFieldMaxLength; //å½ç»ä»¶ä¸ºéè¦è¾å ¥çææ¬æ¡çç»ä»¶æ¶ï¼è®¾ç½®æå¤§çå¯è¾å ¥é¿åº¦ public string HDefaultValue; //é»è®¤å¼ public string HFieldName; //æ°æ®å¯¹åºå段åï¼ç¨äºå¨ç¼è¾æ¶è¿è¡èµå¼ public string HFieldDataType; //æ°æ®å¯¹åºåæ®µçæ°æ®ç±»å public string HRelateUrl; //å¯è½ç¨å°ç龿¥ä¿¡æ¯ public string HSubWindowBackData; //æå¼å¼¹çªè·åæ°æ®åéè¦è®¾ç½®çæ°æ®ï¼æ ¼å¼ãçªå£å ç´ ID-åçªå£æ°æ®fieldã,å¤ä¸ªè®¾ç½®é´ç¨åå·';'åé public string HSubWindowBackDataMethodName; //æ·»å çæ¹æ³åï¼ç¨äºå¼¹çªè°ç¨å¹¶è¿åæ°æ® public string HSelectContent; //䏿å表éé¡¹ãæ ¼å¼ãvalueå¼ââæ¾ç¤ºå¼ã,å¤ä¸ªè®¾ç½®é´ç¨åå·';'åé } } PlanM/bin/Release/BLL.dllBinary files differ
PlanM/bin/Release/BLL.pdbBinary files differ
PlanM/bin/Release/DAL.dllBinary files differ
PlanM/bin/Release/DAL.pdbBinary files differ
PlanM/bin/Release/Model.dllBinary files differ
PlanM/bin/Release/Model.pdbBinary files differ
PlanM/bin/Release/PlanM.dllBinary files differ
PlanM/bin/Release/PlanM.pdbBinary files differ
SQLHelper/obj/Release/SQLHelper.csproj.AssemblyReference.cacheBinary files differ
SyntacticSugar/obj/Debug/SyntacticSugar.csproj.AssemblyReference.cacheBinary files differ
SyntacticSugar/obj/Debug/SyntacticSugar.csproj.FileListAbsolute.txt
@@ -8,4 +8,3 @@ C:\Users\86130\Desktop\æºäºè¿æ\MES-WEB-API\SyntacticSugar\obj\Debug\SyntacticSugar.csproj.CoreCompileInputs.cache C:\Users\86130\Desktop\æºäºè¿æ\MES-WEB-API\SyntacticSugar\obj\Debug\SyntacticSugar.dll C:\Users\86130\Desktop\æºäºè¿æ\MES-WEB-API\SyntacticSugar\obj\Debug\SyntacticSugar.pdb D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\SyntacticSugar\obj\Debug\SyntacticSugar.csproj.AssemblyReference.cache WarM/bin/Release/BLL.dllBinary files differ
WarM/bin/Release/BLL.pdbBinary files differ
WarM/bin/Release/DAL.dllBinary files differ
WarM/bin/Release/DAL.pdbBinary files differ
WarM/bin/Release/Model.dllBinary files differ
WarM/bin/Release/Model.pdbBinary files differ
WarM/bin/Release/WarM.dllBinary files differ
WarM/bin/Release/WarM.pdbBinary files differ
WebAPI/Controllers/Xt_DefineBillMainSetController.cs
@@ -21,7 +21,9 @@ private json objJsonResult = new json(); public DataSet ds = new DataSet(); public SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); public DAL.ClsXt_DefineBillMainSet BillOld = new DAL.ClsXt_DefineBillMainSet(); public DAL.ClsXt_DefineBillMainSet BillNew0 = new DAL.ClsXt_DefineBillMainSet(); #region èªå¨å 载页é¢è¡¨å¤´ /// <summary> /// è¿å项ç®é¶æ®µå表 @@ -99,5 +101,102 @@ } #endregion #region 表头èªå¨å è½½ä¿å æ°å¢/ç¼è¾ [Route("Xt_DefineBillMainSet/SaveXt_DefineBillMainSet")] [HttpPost] public object SaveXt_DefineBillMainSet([FromBody] JObject msg) { var _value = msg["msg"].ToString(); string msg1 = _value.ToString(); string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); string msg2 = sArray[0].ToString(); //è¡¨å¤´æ°æ® string msg3 = sArray[1].ToString(); //å表1æ°æ® string msg4 = sArray[2].ToString(); //ç¨æ· ListModels oListModels = new ListModels(); try { ////ç¼è¾æé //if (!DBUtility.ClsPub.Security_Log_second("Xt_DefineBillMainSet_Edit", 1, false, msg4)) //{ // objJsonResult.code = "0"; // objJsonResult.count = 0; // objJsonResult.Message = "æ ä¿åæéï¼"; // objJsonResult.data = null; // return objJsonResult; //} DAL.ClsXt_DefineBillMainSet oBill = new DAL.ClsXt_DefineBillMainSet(); //è¡¨å¤´æ°æ® List<Model.ClsXt_DefineBillMainSetMain> lsmain = new List<Model.ClsXt_DefineBillMainSetMain>(); msg2 = msg2.Replace("\\", ""); msg2 = msg2.Replace("\n", ""); lsmain = oListModels.getObjectByJson_Xt_DefineBillMainSetMain(msg2); foreach (Model.ClsXt_DefineBillMainSetMain oItem in lsmain) { oItem.HMaker = msg4; oItem.HUpDater = msg4; oBill.omodel = oItem; } //è¡¨ä½æ°æ® msg3 = msg3.Substring(1, msg3.Length - 2); msg3 = msg3.Replace("\\", ""); msg3 = msg3.Replace("\n", ""); List<Model.ClsXt_DefineBillMainSetSub> ls = new List<Model.ClsXt_DefineBillMainSetSub>(); ls = oListModels.getObjectByJson_Xt_DefineBillMainSetSub(msg3); foreach (Model.ClsXt_DefineBillMainSetSub oItemSub in ls) { oBill.DetailColl.Add(oItemSub); } //ä¿å //ä¿å宿¯åå¤ç bool bResult; if (oBill.omodel.HInterID == 0) { bResult = oBill.AddBill(ref DBUtility.ClsPub.sExeReturnInfo); } else if (oBill.omodel.HInterID > 0) { bResult = oBill.ModifyBill(oBill.omodel.HInterID, ref DBUtility.ClsPub.sExeReturnInfo); } else { bResult = false; } //string message = "msg2:ã" + msg2 + "ã;msg3:ã" + msg3 + "ãï¼msg4:ã" + msg4 + "ã"; if (bResult) { objJsonResult.code = "0"; objJsonResult.count = 1; objJsonResult.Message = "ä¿åæåï¼"; objJsonResult.data = 1; return objJsonResult; } else { objJsonResult.code = "0"; objJsonResult.count = 0; objJsonResult.Message = "ä¿å失败ï¼" + DBUtility.ClsPub.sExeReturnInfo; objJsonResult.data = 1; return objJsonResult; } } catch (Exception e) { objJsonResult.code = "0"; objJsonResult.count = 0; objJsonResult.Message = "ä¿å失败ï¼" + e.ToString(); objJsonResult.data = 1; return objJsonResult; } } #endregion } } WebAPI/ListModels.cs
@@ -4051,6 +4051,31 @@ } #endregion #region 表头èªå¨å è½½ /// <summary> /// 表头èªå¨å 载主表json /// </summary> /// <param name="jsonString"></param> /// <returns></returns> public List<Model.ClsXt_DefineBillMainSetMain> getObjectByJson_Xt_DefineBillMainSetMain(string jsonString) { jsonString = "[" + jsonString.ToString() + "]"; List<Model.ClsXt_DefineBillMainSetMain> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Model.ClsXt_DefineBillMainSetMain>>(jsonString); return list; } /// <summary> /// 表头èªå¨å è½½å表json2 /// </summary> /// <param name="jsonString"></param> /// <returns></returns> public List<Model.ClsXt_DefineBillMainSetSub> getObjectByJson_Xt_DefineBillMainSetSub(string jsonString) { jsonString = "[" + jsonString.ToString() + "]"; List<Model.ClsXt_DefineBillMainSetSub> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Model.ClsXt_DefineBillMainSetSub>>(jsonString); return list; } #endregion #region çäº§è´¨éæ±æ¥å /// <summary> /// çäº§è´¨éæ±æ¥å主表json WebAPI/Properties/PublishProfiles/FolderProfile1.pubxml.user
@@ -4,7 +4,7 @@ --> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <History>True|2024-12-24T02:52:25.3403292Z;False|2024-12-24T10:51:41.8017370+08:00;True|2024-12-23T15:45:21.7729300+08:00;True|2024-12-23T15:31:38.8549407+08:00;True|2024-12-23T15:20:26.2361671+08:00;True|2024-12-23T13:40:03.2774116+08:00;False|2024-12-23T13:39:39.8510770+08:00;True|2024-12-23T13:11:15.3232454+08:00;True|2024-12-23T13:05:43.3057458+08:00;True|2024-12-16T10:57:23.0694936+08:00;True|2024-12-16T10:03:48.1938775+08:00;True|2024-12-16T09:38:57.3052219+08:00;False|2024-12-16T09:38:31.7097388+08:00;True|2024-12-16T09:25:38.3751534+08:00;False|2024-12-16T09:24:19.3952981+08:00;True|2024-12-11T22:41:13.2881405+08:00;False|2024-12-11T22:40:26.3239379+08:00;True|2024-12-11T22:14:41.4392948+08:00;True|2024-12-11T22:03:03.6823866+08:00;True|2024-12-11T21:48:51.7423044+08:00;False|2024-12-11T21:47:55.6236616+08:00;True|2024-12-02T14:57:10.0773563+08:00;False|2024-12-02T14:56:35.6440156+08:00;True|2024-11-26T08:55:53.9125170+08:00;True|2024-11-26T08:24:31.3112433+08:00;False|2024-11-26T08:23:46.0894924+08:00;True|2024-11-20T10:16:03.7893118+08:00;False|2024-11-20T10:15:23.2632533+08:00;True|2024-11-20T09:06:55.2799108+08:00;False|2024-11-20T09:05:45.8751214+08:00;True|2024-11-15T10:50:02.2079520+08:00;False|2024-11-15T10:49:22.4156447+08:00;True|2024-11-11T16:53:33.6615343+08:00;False|2024-11-11T16:52:17.7499691+08:00;False|2024-11-06T11:32:23.8339166+08:00;True|2024-10-24T20:08:16.1196372+08:00;True|2024-10-24T14:53:21.0804405+08:00;False|2024-10-24T14:50:14.4659302+08:00;</History> <History>True|2024-12-28T05:48:20.4283118Z;True|2024-12-28T13:43:39.8159616+08:00;True|2024-12-28T13:23:58.4183285+08:00;True|2024-12-28T13:19:13.0583263+08:00;True|2024-12-28T13:12:03.2648502+08:00;True|2024-12-28T13:04:22.6803754+08:00;False|2024-12-28T13:03:56.5993252+08:00;True|2024-12-28T10:50:06.1597154+08:00;True|2024-12-28T10:27:58.7075320+08:00;False|2024-12-28T10:27:09.9450571+08:00;True|2024-12-24T10:52:25.3403292+08:00;False|2024-12-24T10:51:41.8017370+08:00;True|2024-12-23T15:45:21.7729300+08:00;True|2024-12-23T15:31:38.8549407+08:00;True|2024-12-23T15:20:26.2361671+08:00;True|2024-12-23T13:40:03.2774116+08:00;False|2024-12-23T13:39:39.8510770+08:00;True|2024-12-23T13:11:15.3232454+08:00;True|2024-12-23T13:05:43.3057458+08:00;True|2024-12-16T10:57:23.0694936+08:00;True|2024-12-16T10:03:48.1938775+08:00;True|2024-12-16T09:38:57.3052219+08:00;False|2024-12-16T09:38:31.7097388+08:00;True|2024-12-16T09:25:38.3751534+08:00;False|2024-12-16T09:24:19.3952981+08:00;True|2024-12-11T22:41:13.2881405+08:00;False|2024-12-11T22:40:26.3239379+08:00;True|2024-12-11T22:14:41.4392948+08:00;True|2024-12-11T22:03:03.6823866+08:00;True|2024-12-11T21:48:51.7423044+08:00;False|2024-12-11T21:47:55.6236616+08:00;True|2024-12-02T14:57:10.0773563+08:00;False|2024-12-02T14:56:35.6440156+08:00;True|2024-11-26T08:55:53.9125170+08:00;True|2024-11-26T08:24:31.3112433+08:00;False|2024-11-26T08:23:46.0894924+08:00;True|2024-11-20T10:16:03.7893118+08:00;False|2024-11-20T10:15:23.2632533+08:00;True|2024-11-20T09:06:55.2799108+08:00;False|2024-11-20T09:05:45.8751214+08:00;True|2024-11-15T10:50:02.2079520+08:00;False|2024-11-15T10:49:22.4156447+08:00;True|2024-11-11T16:53:33.6615343+08:00;False|2024-11-11T16:52:17.7499691+08:00;False|2024-11-06T11:32:23.8339166+08:00;True|2024-10-24T20:08:16.1196372+08:00;True|2024-10-24T14:53:21.0804405+08:00;False|2024-10-24T14:50:14.4659302+08:00;</History> <_PublishTargetUrl>D:\ç½ç«åå¸\æºäºMESWMS\API</_PublishTargetUrl> </PropertyGroup> <ItemGroup> @@ -45,19 +45,19 @@ <publishTime>02/22/2013 16:43:40</publishTime> </File> <File Include="bin/BLL.dll"> <publishTime>12/23/2024 13:05:14</publishTime> <publishTime>12/28/2024 13:47:46</publishTime> </File> <File Include="bin/BLL.pdb"> <publishTime>12/23/2024 13:05:14</publishTime> <publishTime>12/28/2024 13:47:46</publishTime> </File> <File Include="bin/BouncyCastle.Crypto.dll"> <publishTime>12/18/2020 05:32:28</publishTime> </File> <File Include="bin/DAL.dll"> <publishTime>12/23/2024 13:05:13</publishTime> <publishTime>12/28/2024 13:47:44</publishTime> </File> <File Include="bin/DAL.pdb"> <publishTime>12/23/2024 13:05:13</publishTime> <publishTime>12/28/2024 13:47:44</publishTime> </File> <File Include="bin/Dapper.dll"> <publishTime>07/22/2016 22:52:40</publishTime> @@ -111,10 +111,10 @@ <publishTime>07/25/2012 19:48:56</publishTime> </File> <File Include="bin/Model.dll"> <publishTime>12/23/2024 13:05:10</publishTime> <publishTime>12/28/2024 10:27:18</publishTime> </File> <File Include="bin/Model.pdb"> <publishTime>12/23/2024 13:05:10</publishTime> <publishTime>12/28/2024 10:27:18</publishTime> </File> <File Include="bin/Models/ClsSc_MouldScrapOutBillMain.cs"> <publishTime>04/06/2023 15:57:02</publishTime> @@ -294,13 +294,13 @@ <publishTime>11/24/2014 19:18:48</publishTime> </File> <File Include="bin/WebAPI.dll"> <publishTime>12/24/2024 10:52:18</publishTime> <publishTime>12/28/2024 13:48:14</publishTime> </File> <File Include="bin/WebAPI.pdb"> <publishTime>12/24/2024 10:52:18</publishTime> <publishTime>12/28/2024 13:48:14</publishTime> </File> <File Include="bin/WebAPI.XmlSerializers.dll"> <publishTime>12/24/2024 10:52:24</publishTime> <publishTime>12/28/2024 13:48:18</publishTime> </File> <File Include="bin/WebGrease.dll"> <publishTime>07/18/2013 01:03:52</publishTime> WorkM/bin/Release/BLL.dllBinary files differ
WorkM/bin/Release/BLL.pdbBinary files differ
WorkM/bin/Release/DAL.dllBinary files differ
WorkM/bin/Release/DAL.pdbBinary files differ
WorkM/bin/Release/Model.dllBinary files differ
WorkM/bin/Release/Model.pdbBinary files differ
WorkM/bin/Release/WarM.dllBinary files differ
WorkM/bin/Release/WarM.pdbBinary files differ
WorkM/bin/Release/WorkM.dllBinary files differ
WorkM/bin/Release/WorkM.pdbBinary files differ
sdk_dingding/TopSdk/bin/Debug/TopSdk.dllBinary files differ
sdk_dingding/TopSdk/bin/Debug/TopSdk.pdbBinary files differ
sdk_dingding/TopSdk/obj/Debug/TopSdk.csproj.AssemblyReference.cacheBinary files differ
sdk_dingding/TopSdk/obj/Debug/TopSdk.csproj.FileListAbsolute.txt
@@ -1,6 +1,5 @@ D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\sdk_dingding\TopSdk\bin\Debug\TopSdk.dll D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\sdk_dingding\TopSdk\bin\Debug\TopSdk.pdb D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\sdk_dingding\TopSdk\obj\Debug\TopSdk.csproj.AssemblyReference.cache D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\sdk_dingding\TopSdk\obj\Debug\TopSdk.csproj.CoreCompileInputs.cache D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\sdk_dingding\TopSdk\obj\Debug\TopSdk.dll D:\ç½ç«åå¸\å端代ç \MES-WEB-API\MES-WEB-API\sdk_dingding\TopSdk\obj\Debug\TopSdk.pdb sdk_dingding/TopSdk/obj/Debug/TopSdk.dllBinary files differ
sdk_dingding/TopSdk/obj/Debug/TopSdk.pdbBinary files differ