|
|
@ -0,0 +1,18 @@ |
|
|
|
|
|
using System; |
|
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
|
using System.ComponentModel; |
|
|
|
|
|
using System.Text; |
|
|
|
|
|
|
|
|
|
|
|
namespace Shentun.Peis.Enums |
|
|
|
|
|
{ |
|
|
|
|
|
public class RegisterCheckPictureFileType |
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
[Description("图片")] |
|
|
|
|
|
public const char PictureFile = '0'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Description("报告文件")] |
|
|
|
|
|
public const char ReportFile = '1'; |
|
|
|
|
|
} |
|
|
|
|
|
} |