WcsDeviceAddress.cs 1.58 KB
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 
	/// </summary>
    [Table("wcs_Device_Address")]
    public partial class WcsDeviceAddress : IdEntity
    {
        public WcsDeviceAddress()
        {
        }

        /// <summary>
	    /// 设备编号
	    /// </summary>
        [Column("Code")]
        public string Code { get; set; }
        /// <summary>
	    /// 设备包含的成员
	    /// </summary>
        [Column("Member")]
        public string Member { get; set; }
        /// <summary>
	    /// 设备类型
	    /// </summary>
        [Column("Type")]
        public string Type { get; set; }
        /// <summary>
	    /// DB块
	    /// </summary>
        [Column("Db")]
        public string Db { get; set; }
        /// <summary>
	    /// 地址
	    /// </summary>
        [Column("Address")]
        public int? Address { get; set; }
        /// <summary>
	    /// 地址小数位
	    /// </summary>
        [Column("Address_decimal")]
        public int? AddressDecimal { get; set; }
        /// <summary>
	    /// 地址数据类型
	    /// </summary>
        [Column("AddressType")]
        public string AddressType { get; set; }
        /// <summary>
	    /// 地址的属性
	    /// </summary>
        [Column("Name")]
        public string Name { get; set; }
        /// <summary>
	    /// 备注
	    /// </summary>
        [Column("Note")]
        public string Note { get; set; }
        /// <summary>
	    /// 值
	    /// </summary>
        [Column("value")]
        public string Value { get; set; }
    }
}