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

65 lines
1.7 KiB

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Model.Entity
{
/// <summary>
/// 7线
/// </summary>
[SugarTable("eqmt_collect_data7")]
public class Eqmt7
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")]
public long id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
public DateTime? gmt_create { get; set; } = DateTime.Now;
/// <summary>
/// 修改时间
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "修改时间")]
public DateTime? gmt_modified { get; set; }
/// <summary>
/// 收集唯一ID
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")]
public string collect_id { get; set; }
/// <summary>
///
/// </summary>
public int eqmt_id { get; set; }
public int d2000 { get; set; }
public int w10 { get; set; }
public int d9500 { get; set; }
public int d9502 { get; set; }
public int d9554 { get; set; }
public int d9504 { get; set; }
public int d9506 { get; set; }
public int d9508 { get; set; }
public int d9510 { get; set; }
public int d9522 { get; set; }
public decimal d9524 { get; set; }
public decimal d9526 { get; set; }
public decimal d9528 { get; set; }
public decimal d9530 { get; set; }
}
}