You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Frame.Data.Entity { public class FormICSBarCodeModel { public string packQty { get; set; } public string packCount { get; set; } public string Qty { get; set; } public string count { get; set; } public string sumQty { get; set; } public string Free2 { get; set; } public string Free3 { get; set; } public string WorkPoint { get; set; } public string Free1 { get; set; } public string cCode { get; set; } public string cInvCode { get; set; } public int maxLot { get; set; } } }
|