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.
39 lines
1022 B
C#
39 lines
1022 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProductionSystem_Model.DbModel
|
|
{
|
|
/// <summary>
|
|
/// 产品步骤
|
|
/// </summary>
|
|
public class T_Product_Step
|
|
{
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
|
|
public string Id { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "step_name")]
|
|
public string StepName { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "equipment_name")]
|
|
public string EquipmentName { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "write_value")]
|
|
public string WriteValue { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "return_value")]
|
|
public string ReturnValue { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "create_time")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "product_type")]
|
|
public string ProductType { get; set; }
|
|
}
|
|
}
|