using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Abp.Domain.Event
{
///
/// mes 发布织布排产单
///
public class MESPublishWeavingTaskDto
{
///
/// 排产单号
///
public string Code { get; set; }
///
/// 产品编号
///
public string ProductionOrderCode { get; set; }
///
/// 部门编号
///
public string Department { get; set; }
///
/// 设备编号
///
public string DeviceCode { get; set; }
///
/// 客户名
///
public string CustomerName { get; set; }
///
/// 品种规格
///
public string Specification { get; set; }
///
/// 总经
///
public int GeneralWarp { get; set; }
///
/// 计划数量
///
public int PlannedQuantity { get; set; }
///
/// 生产落数
///
public int ProductionRuns { get; set; }
}
}