public void Deconstruct(
     out ArisSystemType systemType,
     out int beamCount,
     out LensType lensType)
 {
     systemType = SystemType;
     beamCount  = BeamCount;
     lensType   = LensType;
 }
 public BeamConfig(
     ArisSystemType systemType,
     int beamCount,
     LensType lensType)
 {
     SystemType = systemType;
     BeamCount  = beamCount;
     LensType   = lensType;
 }