using Bro.Common.Helper;
|
using Bro.Common.Model;
|
using Bro.Process;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Bro.M071.Process
|
{
|
[Process("M071", EnumHelper.DeviceAttributeType.Device)]
|
public partial class M071Process : ProcessControl
|
{
|
#region 构造函数
|
public M071Process() : base() { }
|
public M071Process(string productionCode) : base(productionCode) { }
|
#endregion
|
|
#region 配置
|
M071Config Config
|
{
|
get => IConfig as M071Config;
|
}
|
#endregion
|
}
|
}
|