/** 版本信息模板在安装目录下,可自行修改。 * digital_device_attr.cs * * 功 能: N/A * 类 名: digital_device_attr * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2021/4/13 19:59:48 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace DataService.Model { /// /// digital_device_attr:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class digital_device_attr { public digital_device_attr() {} #region Model private int _typeattrid; private string _deviceid; private int? _stateid; private string _attrname; private string _attrfield; private string _attrvalue; private string _remark1; private string _remark2; private string _remark3; private string _remark4; private string _remark5; /// /// auto_increment /// public int TypeAttrId { set{ _typeattrid=value;} get{return _typeattrid;} } /// /// /// public string DeviceId { set{ _deviceid=value;} get{return _deviceid;} } /// /// /// public int? StateId { set{ _stateid=value;} get{return _stateid;} } /// /// /// public string AttrName { set{ _attrname=value;} get{return _attrname;} } /// /// /// public string AttrField { set{ _attrfield=value;} get{return _attrfield;} } /// /// /// public string AttrValue { set{ _attrvalue=value;} get{return _attrvalue;} } /// /// /// public string Remark1 { set{ _remark1=value;} get{return _remark1;} } /// /// /// public string Remark2 { set{ _remark2=value;} get{return _remark2;} } /// /// /// public string Remark3 { set{ _remark3=value;} get{return _remark3;} } /// /// /// public string Remark4 { set{ _remark4=value;} get{return _remark4;} } /// /// /// public string Remark5 { set{ _remark5=value;} get{return _remark5;} } #endregion Model } }