You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
681 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Txgy.RBS.DbModel
{
[SugarTable("monitoring_info")]
public class MonitoringInfo
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
[SugarColumn(ColumnName = "work_area_id")]
public int WorkAreaId { get; set; }
[SugarColumn(ColumnName = "layer_num")]
public int LayerNum { get; set; }
[SugarColumn(ColumnName = "moni_num")]
public int MoniNum { get; set; }
[SugarColumn(ColumnName = "moni_date")]
public string MoniDate { get; set; }
}
}