2025-11-28 16:05:22 +08:00

26 lines
787 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RIZO.Model.Mes.Dto.WorkOrderInfo
{
public class FlowCard
{
// 流卡编号(业务编号,与二维码关联)
// 示例FLOW-20251121-0001建议包含日期+序号,确保唯一)
public string FlowCardNo { get; set; }
public string LineCode { get; set; }
public string LineName { get; set; }
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
public int TotalQty { get; set; }
//批次号
public string BatchNumber { get; set; }
public string UserId { get; set; }
public string UserName { get; set; }
}
}