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.
82 lines
2.2 KiB
C#
82 lines
2.2 KiB
C#
using NPOI.SS.Formula.Functions;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 门体发泡记录
|
|
/// </summary>
|
|
[SugarTable("DOOR_FOAMRECORD", "AUCMA_MES")]
|
|
public class DoorFoamRecord
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
|
|
public int ObjId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PLAN_CODE")]
|
|
public string PlanCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ORDER_CODE")]
|
|
public string OrderCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_CODE")]
|
|
public string MaterialCode { get; set; }
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_NAME")]
|
|
public string MaterialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 门体计划数
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PLAN_AMOUNT")]
|
|
public int PlanAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成数
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "COMPLETE_AMOUNT")]
|
|
public int CompleteAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BEGIN_TIME")]
|
|
public DateTime BeginTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "END_TIME")]
|
|
public DateTime EndTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CREATE_TIME")]
|
|
public DateTime CreateTime { get; set; }
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "UPDATE_TIME")]
|
|
public DateTime UpdateTime { get; set; }
|
|
}
|
|
}
|