You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
584 B
22 lines
584 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.FJC.TRACING.DAInterface
|
|
{
|
|
/// <summary>
|
|
/// 条码生成接口
|
|
/// </summary>
|
|
public interface ICodeGenerator
|
|
{
|
|
/// <summary>
|
|
/// 生成条码
|
|
/// </summary>
|
|
/// <param name="materialcode">物料号</param>
|
|
/// <param name="time">时间</param>
|
|
/// <param name="parameters">参数</param>
|
|
/// <returns></returns>
|
|
string Generate(string materialcode, DateTime time, dynamic parameters);
|
|
}
|
|
}
|
|
|