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.
38 lines
1.0 KiB
38 lines
1.0 KiB
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-24
|
|
/// </summary>
|
|
public class WasteRateCountBLL : BaseBLL
|
|
{
|
|
public DataResult<List<WasteRateCountDModel>> GetAllList(WasteRateCountDModel condition)
|
|
{
|
|
DataResult<List<WasteRateCountDModel>> result = new DataResult<List<WasteRateCountDModel>>();
|
|
try
|
|
{
|
|
result.Result = new WasteRateCountDAL().GetAllList(condition);
|
|
result.IsSuccess = true;
|
|
return result;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
result.IsSuccess = false;
|
|
result.Msg = ex.ToString();
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|