38 lines
873 B
C#
38 lines
873 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JSMachine.WMS.Common.Dto.Http.Out
|
|
{
|
|
/// <summary>
|
|
/// 卷标打印传输信息
|
|
/// </summary>
|
|
public class PrintPaperinfoParam
|
|
{
|
|
public string PaperLabel { get; set; }
|
|
public string ProductLineName { get; set; }
|
|
|
|
public string CompanyName { get; set; }
|
|
|
|
public string Supplier { get; set; }
|
|
|
|
public string PaperWidth { get; set; }
|
|
|
|
public string InWeight { get; set; }
|
|
|
|
public string PaperCode { get; set; }
|
|
|
|
public string MeterLength { get; set; }
|
|
|
|
public string PaperUnitWeight { get; set; }
|
|
|
|
public string MakerName { get; set; }
|
|
|
|
public string StockHouseName { get; set; }
|
|
|
|
public string LocationMark { get; set; }
|
|
}
|
|
}
|