using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Domain
{
///
/// 返单信息
///
public class ReorderInfo
{
///
/// 当前订单编号
///
public int Id { get; set; }
///
/// 当前订单号
///
public string OrderNo { get; set; }
///
/// 当前订单时间
///
public string CreateTime { get; set; }
///
/// 返单号
///
public string ReOrderNo { get; set; }
///
/// 返单时间
///
public string ReCreateTime { get; set; }
///
/// 生产工厂编号
///
public int FactoryId { get; set; }
///
/// 生产工厂名
///
public string FactoryName { get; set; }
///
/// 生产工厂简称
///
public string FactoryKey { get; set; }
///
/// 生产工厂编码
///
public string FactoryCode { get; set; }
}
}