27 lines
663 B
C#
27 lines
663 B
C#
|
|
///
|
|||
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|||
|
|
///
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Common
|
|||
|
|
{
|
|||
|
|
public interface IOrderInfo
|
|||
|
|
{
|
|||
|
|
string POName { get; }
|
|||
|
|
string VariantCode { get; }
|
|||
|
|
string ModuleParam { get; }
|
|||
|
|
int PiecesCount { get; }
|
|||
|
|
string SNPrefix { get; }
|
|||
|
|
int SNFirst { get; }
|
|||
|
|
int SNDigitsCount { get; }
|
|||
|
|
string SNSuffix { get; }
|
|||
|
|
string RAPrefix { get; }
|
|||
|
|
int RAFirst { get; }
|
|||
|
|
string RASuffix { get; }
|
|||
|
|
string Remark { get; }
|
|||
|
|
int CurrentPcsCount { get; set; }
|
|||
|
|
int CurrentSN { get; set; }
|
|||
|
|
int CurrentRA { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|