using com.hnshituo.core.webapp.vo;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
public class MeterWorkCalibrationBranchService
{
///
/// 根据预报编号查数据
///
///
///
public RESTfulResult> doQueryWf(MeterWorkCalibrationBranch info)
{
DbHelper db = new DbHelper();
RESTfulResult> rm = db.doOption>("meterworkcalibrationbranchs", "selectForMutual", new object[] { info }, 1);
return rm;
}
}
}