18 lines
440 B
C#
Raw Normal View History

2024-12-22 15:12:10 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.Mobile.ReportFlow.Dto
{
public class ProReportWorkDto
{
public string workorder { get; set; }
public int processId { get; set; }
public int finish_num { get; set; }
public int bad_num { get; set; }
public string process_operator { get; set; }
}
}