using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { public class BarCodeRequest { public string F_prefix { get; set; } public string F_suffix { get; set; } public int F_code { get; set; } public int F_length { get; set; } public char F_replenish { get; set; } public int F_barType { get; set; } public int F_maxNum { get; set; } } }