using PMS.EntityModels.Product; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PMS.Interface.Product { /// /// 创建者:冉利 /// 创建日期:2018/1/7 /// 功能描述:自定义查询方案接口 /// public interface IZDYCXModel { /// /// 自定义查询方案查找 /// /// /// string ProjectZdyCx(long? zhID); /// /// 自定义方案保存 /// /// /// string ZdyFangan(ZDYCXModel zdymodel); /// /// 方案查询 /// /// /// string FaSelect(string FaCx); /// /// 方案名combobox加载 /// /// string FanSelect(); /// /// 方案名重复检查 /// /// /// string FAM(string name); } }