| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace Ips.Library.Entity
- {
- public enum PosType
- {
- [Description("无")]
- None,
- [Description("三星无参")]
- X3,
- [Description("三星单参")]
- X3Ref,
- [Description("双星无参")]
- X2,
- [Description("双星单参")]
- X2Ref
- }
- }
|