注塑喷涂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
560 B

4 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MESClassLibrary.Model
{
public class DownRecordVO
{
public string ID { get; set; }
public string StationID { get; set; }
public string PlanID { get; set; }
public string DownType { get; set; }
public string DownReason { get; set; }
public string StartTime { get; set; }
public string EndTime { get; set; }
public string Remark1 { get; set; }
}
}