Beispiel #1
0
 /// <summary>
 /// 添加打印数据到 新增数据表
 /// </summary>
 public int AddCurrentPrintData(string ids, int userID, DateTime productionDate)
 {
     return(SqlHelper.ExecuteNonQueryProcedure("SJAddUserCurrentPrintData", new SqlParameter[] { new SqlParameter("@IDS", ids), new SqlParameter("@UserID", userID), new SqlParameter("@ProductionDate", productionDate) }));
 }
Beispiel #2
0
 /// <summary>
 /// 生产任务清单数据插入到打印历史表
 /// </summary>
 public int GenPrintNewDataByDate(DateTime date)
 {
     return(SqlHelper.ExecuteNonQueryProcedure("SJGenPrintData", new SqlParameter[] { new SqlParameter("@ProductionDate", date) }));
 }