巨石化纤
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.

21 lines
696 B

using System;
namespace SSWMS.Common
{
[Serializable]
public class IO_CONTROL_APPLY
{
public int APPLY_ID { get; set; }
public int CONTROL_APPLY_TYPE { get; set; }
public string DEVICE_CODE { get; set; }
public int APPLY_TASK_STATUS { get; set; }
public string ERROR_TEXT { get; set; }
public string STOCK_BARCODE { get; set; }
public string GOODS_CODE { get; set; }
public string CREATE_TIME { get; set; }
public string CONTROL_APPLY_REMARK { get; set; }
public string CELL_MODEL { get; set; }
public string STOCK_WEIGHT { get; set; }
public string STOCK_COUNT { get; set; }
}
}