using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
///
///
///
[SugarTable("real_workdata")]
public class Real_workdata
{
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="combineid" ) ]
public string? Combineid { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="tm" ) ]
public DateTime? Tm { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="data" ) ]
public string? Data { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="reportmode" ) ]
public decimal? Reportmode { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="edittime" ) ]
public DateTime? Edittime { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="deleteflag" ) ]
public int? Deleteflag { get; set; }
}
}