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.
ProductionSystem/ProductionSystem_Model/DbModel/T_Product_Step.cs

43 lines
1.1 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
11 months ago
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)]
11 months ago
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; }
11 months ago
[SugarColumn(ColumnName = "create_time")]
public DateTime CreateTime { get; set; }
[SugarColumn(ColumnName = "product_type")]
public string ProductType { get; set; }
[SugarColumn(ColumnName = "product_barcode")]
public string ProductBarcode { get; set; }
}
}