// 按日期查询历史打印数据
 public List <LabelPrintHistoryModel> GetAllLabelPrintHistoryDataByDate(DateTime date, int userId)
 {
     return(dal.GetLabelPrintHistoryDataByDate(date, userId).ToList());
 }