19 lines
335 B

5 years ago
using System.ComponentModel;
namespace CK.SCP.Models.Enums
{
public enum ErpInterfaceType
{
[Description("移库")]
TR,
[Description("回冲")]
BK,
MaterialIn,
MaterialOut,
ProductIn,
ProductOut,
[Description("销售")]
SH,
RCT
}
}