using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QMAPP.FJC.TRACING.DAInterface
{
///
/// 条码生成接口
///
public interface ICodeGenerator
{
///
/// 生成条码
///
/// 物料号
/// 时间
/// 参数
///
string Generate(string materialcode, DateTime time, dynamic parameters);
}
}