using SqlSugar;
namespace ZJ_BYD.Model
{
///
/// PLC点位配置
///
[SugarTable("t_plcpoint")]
public class T_PlcPoint : BaseModel
{
///
/// 工控机标识
///
[SugarColumn(ColumnName = "ipcid")]
public string IpcId { get; set; }
///
/// 产线编码
///
[SugarColumn(ColumnName = "linecode")]
public string LineCode { get; set; }
///
/// 工位编码
///
[SugarColumn(ColumnName = "stationcode")]
public string StationCode { get; set; }
///
/// 点位编码
///
[SugarColumn(ColumnName = "pointcode")]
public string PointCode { get; set; }
///
/// 点位名称
///
[SugarColumn(ColumnName = "pointname")]
public string PointName { get; set; }
///
/// 点位起始地址
///
[SugarColumn(ColumnName = "pointstartaddress")]
public string PointStartAddress { get; set; }
///
/// 长度
///
[SugarColumn(ColumnName = "pointlength")]
public string PointLength { get; set; }
///
/// 数据类型
///
[SugarColumn(ColumnName = "pointdatatype")]
public string PointDataType { get; set; }
///
/// 存结果表的字段名称
///
[SugarColumn(ColumnName = "resultfield")]
public string ResultField { get; set; }
///
/// 是否再主页面显示
/// 默认值: b'0'
///
[SugarColumn(ColumnName = "isshowmain")]
public bool IsShowMain { get; set; }
///
/// 是否存数据库
///
[SugarColumn(ColumnName = "issavedb")]
public bool IsSaveDb { get; set; }
///
/// 是否测试项点位
///
[SugarColumn(ColumnName = "istestitem")]
public bool IsTestItem { get; set; }
///
/// 是否反馈数据点位
///
[SugarColumn(ColumnName = "isresponsedata")]
public bool IsResponseData { get; set; }
///
/// 是否组件条码
///
[SugarColumn(ColumnName = "issub")]
public bool IsSub { get; set; }
///
/// 是否系统内置点位
///
[SugarColumn(ColumnName = "issystem")]
public bool IsSystem { get; set; }
///
/// 排序索引
///
[SugarColumn(ColumnName = "sortindex")]
public int SortIndex { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 是否启用
///
[SugarColumn(ColumnName = "isactive")]
public bool IsActive { get; set; }
///
/// 是否删除
/// 默认值: b'0'
///
[SugarColumn(ColumnName = "isdeleted")]
public bool IsDeleted { get; set; }
}
}