TaskTypeName.cs 382 B

12345678910111213
  1. namespace SHJX.Service.Common.Constants
  2. {
  3. public class TaskTypeName
  4. {
  5. public const string WASH = "Wash";
  6. public const string SAMPLE = "Sample";
  7. public const string WASH_ZH = "清洗";
  8. public const string SAMPLE_ZH = "样品";
  9. public const string BLANK_ZH = "空白";
  10. public const string CALIBRATION_ZH = "标定";
  11. }
  12. }