You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
939 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace PrintBarCode.Model
{
public class BindBarCodeInfo
{
[JsonPropertyName("saleOrderCode")]
public string SaleOrderCode { get; set; }
[JsonPropertyName("materialName")]
public string MaterialName { get; set; }
[JsonPropertyName("poNo")]
public string PoNo { get; set; }
[JsonPropertyName("qrcode")]
public string QrCode { get; set; }
[JsonPropertyName("batchCode")]
public string BatchCode { get; set; }
[JsonPropertyName("materialSpec")]
public string MaterialSpec { get; set; }
[JsonPropertyName("materialCode")]
public string MaterialCode { get; set; }
[JsonPropertyName("barcode")]
public string Barcode { get; set; }
}
}