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.
72 lines
1.8 KiB
C#
72 lines
1.8 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProductionSystem_Model.DbModel
|
|
{
|
|
/// <summary>
|
|
/// 产品数据
|
|
/// </summary>
|
|
[SugarTable("t_data_product")]
|
|
public class T_Data_Product
|
|
{
|
|
/// <summary>
|
|
/// 参数编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "para_code")]
|
|
public string ParaCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标值
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "target_val")]
|
|
public string TargetVal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdtime")]
|
|
public string CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建者
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdby")]
|
|
public string CreateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updatedtime")]
|
|
public string UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新者
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updatedby")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否产品
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "is_product")]
|
|
public string IsProduct { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数类别
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "para_category")]
|
|
public string ParaCategory { get; set; }
|
|
|
|
}
|
|
}
|