using System.Text.Json.Serialization;
using SqlSugar;
namespace WmsMobileServe.DataBase.Base.Po;
///
/// 出库/拣货任务表
///
[SugarTable("T_CK_PICKINGWAVEGOODS")]
public class TPickGoods
{
///
///
///
[JsonPropertyName("pickingId")]
[SugarColumn(ColumnName = "PICKINGID")]
public string? PickingId { get; set; }
///
///
///
[JsonPropertyName("goodsId")]
[SugarColumn(ColumnName = "GOOD_ID")]
public string? GoodsId { get; set;}
///
///
///
[JsonPropertyName("goodsName")]
[SugarColumn(ColumnName = "GOODS_NAME")]
public string? GoodsName { get; set; }
///
///
///
[JsonPropertyName("vehicleNo")]
[SugarColumn(ColumnName = "CTL")]
public string? VehicleNo { get; set; }
///
///
///
[JsonPropertyName("location")]
[SugarColumn(ColumnName = "LOC_ID")]
public string? Location { get; set; }
///
///
///
[JsonPropertyName("miStockNum")]
[SugarColumn(ColumnName = "MISTOCK_NUM")]
public decimal? MiStockNum { get; set; }
///
///
///
[JsonPropertyName("pickingNum")]
[SugarColumn(ColumnName = "PICKING_NUM")]
public decimal? PickingNum { get; set; }
///
///
///
[JsonPropertyName("goodsNumSj")]
[SugarColumn(ColumnName = "GOODS_NUM_SJ")]
public decimal? GoodsNumSj { get; set; }
///
///
///
[JsonPropertyName("status")]
[SugarColumn(ColumnName = "STATUS")]
public string? Status { get; set; }
///
///
///
[JsonPropertyName("outStand")]
[SugarColumn(ColumnName = "OUTSTAND")]
public string? OutStand { get; set; }
}