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.
41 lines
852 B
C#
41 lines
852 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.Entity.DTO
|
|
{
|
|
public class ProDownRecordDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public int? MachineId { get; set; }
|
|
|
|
public int? PositionId { get; set; }
|
|
|
|
public string Rfid { get; set; }
|
|
|
|
public string Sfc { get; set; }
|
|
|
|
public int? IsProduction { get; set; }
|
|
|
|
public string ProductionFlag { get; set; }
|
|
|
|
public string RecordTime { get; set; }
|
|
|
|
public string DownMaterialId { get; set; }
|
|
|
|
public int eaValue { get; set; }
|
|
|
|
public int isFinish { get; set; }
|
|
|
|
public string shaftNumber { get; set; }
|
|
|
|
public string beginTime { get; set; }
|
|
|
|
public string endTime { get; set; }
|
|
|
|
}
|
|
}
|