using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL.EC
{
///
/// 订单印刷参数操作接口
///
public interface IEC_OrderPrintParameterDAL : ICommonDAL
{
///
/// 根据订单ID获取其印刷参数
///
///
///
EC_OrderPrintParameter GetModel(int orderId);
}
}