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.
19 lines
372 B
19 lines
372 B
4 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
|
||
|
public enum ManufactureProcedureType
|
||
|
{
|
||
|
[Description("批量生产")]
|
||
|
Ordinary = 1,
|
||
|
[Description("试制")]
|
||
|
TrialManufacture = 2,
|
||
|
[Description("拆解返修")]
|
||
|
Disassembly = 3,
|
||
|
[Description("小修理")]
|
||
|
Replace = 4
|
||
|
|
||
|
}
|
||
|
}
|