DIPlatingCellDevice.cs 443 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PunkHPX8_RT.Devices.PlatingCell
  7. {
  8. public class DIPlatingCellDevice:PlatingCellDevice
  9. {
  10. /// <summary>
  11. /// 构造函数
  12. /// </summary>
  13. /// <param name="moduleName"></param>
  14. public DIPlatingCellDevice(string moduleName) : base(moduleName)
  15. {
  16. }
  17. }
  18. }