using EC.Entity.Transport; using EC.Service.Base; namespace EC.Service.Transport { public class MonthPlanService : MvcService { public MonthPlanService() { } #region BLL /// /// 通过主键查询月计划 /// /// public MonthPlanEntity GetPlanBySerialNo(string sNo) { return SelectEntityByWhere($"SerialNumber='{sNo}'"); } public MonthPlanEntity GetLastPlan(string companyId, int supplierId) { return SelectEntityByWhere($"CompanyId='{companyId}' AND SupplierId='{supplierId}' order by Id desc"); } #endregion BLL } }