24 lines
398 B
C#
24 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZR.Model.MES.pro.DTO
|
|
{
|
|
public class WorkplanSummaryDto
|
|
{
|
|
|
|
|
|
public float requireNum { set; get; }
|
|
public float requireHanger { set; get; }
|
|
public float turnnum { set; get; }
|
|
public float productiontime { set; get; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|