天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
1022 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMFrameWork.Data;
using QMAPP.MESReport.Entity.LineQTY;
using QMAPP.MESReport.DAL.LineQTY;
using QMAPP.BLL;
using QMAPP.Entity;
using System.Data;
namespace QMAPP.MESReport.BLL.LineQTY
{
/// <summary>
/// 生产统计
/// 于子清
/// 2017-10-18
/// </summary>
public class QTYInfoCountBLL : BaseBLL
{
public DataResult<List<QTYInfoCountDModel>> GetAllList(QTYInfoCountDModel condition)
{
DataResult<List<QTYInfoCountDModel>> result = new DataResult<List<QTYInfoCountDModel>>();
try
{
result.Result = new QTYInfoCountDAL().GetAllList(condition);
result.IsSuccess = true;
return result;
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = ex.ToString();
return result;
}
}
}
}