using Ant.Entity;
using MES.Production.Entity.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.Entity
{
///
///
///
[Table("SYS_Device")]
public class SYS_Device// : SoftBaseEntity
{
///
/// 主键ID
///
[Column("id", IsPrimaryKey = true)]
public string Id { set; get; } = string.Empty;
///
/// 设备名称
///
public string Name { set; get; } = string.Empty;
///
/// 设备编号(唯一)
///
public string Code { set; get; } = string.Empty;
///
/// 设备地址
///
public string Address { set; get; } = string.Empty;
///
/// 设备密码
///
public string Password { set; get; } = string.Empty;
///
/// 是否删除(0有效1删除)
///
public int IsDelete { set; get; }
///
/// 创建时间
///
public DateTime CreateDT { set; get; } = DateTime.Now;
///
/// 创建人
///
public string CreateBY { set; get; } = string.Empty;
///
/// 修改时间
///
public DateTime ModifyDT { set; get; } = DateTime.Now;
///
/// 修改人
///
public string ModifyBY { set; get; } = string.Empty;
}
}