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.

35 lines
883 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MESDataExtractQuartz.Model
{
[SugarTable("Record_MLMaterWeight")]
public class Record_MLMaterWeight
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]//通过特性设置主键和自增列
public int objId { get; set; }
public string Plan_date { get; set; }
public string Equip_code { get; set; }
public string Equip_name { get; set; }
public string Mater_code { get; set; }
public string Mater_Name { get; set; }
public string Real_StartTime { get; set; }
public string Real_EndTime { get; set; }
public decimal Real_weight { get; set; }
public DateTime RecordTime { get; set; }
}
}