本月每天产量

This commit is contained in:
qianhao.xu
2024-12-22 15:12:10 +08:00
parent 37146621c1
commit 54e920680d
9 changed files with 224 additions and 116 deletions

View File

@@ -0,0 +1,17 @@
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; }
}
}