kingno
2025-03-31 f5bd202c943df54f160d3ae2dd44e8ef150a8b7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Bro.Common.Base;
using Bro.Common.Helper;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Bro.Device.PointLaser_Omron
{
    [Device("PointLaser_Omron", "欧姆龙点激光",EnumHelper.DeviceAttributeType.InitialConfig)]
    public class PointLaser_OmronInitialConfig : TcpClientInitialConfig
    {
        [Category("数据比率")]
        [Description("通信数据和测量数据的换算比率")]
        [DisplayName("数据比率")]
        public double DataRatio { get; set; } = 0.00001;
    }
 
    [Device("PointLaser_Omron", "欧姆龙点激光", EnumHelper.DeviceAttributeType.OperationConfig)]
    public class PointLaser_OmronOperationConfig : OperationConfigBase
    {
    }
}