using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TrunksIousOutInStore.LocalSyncBO
|
|
{
|
|
[Serializable]
|
|
public class TrunksIousOutInStoreRecordExt
|
|
{
|
|
public long? WorkShop_ID { get; set; }
|
|
|
|
public long? WorkUnit_ID { get; set; }
|
|
|
|
public long? Store_ID { get; set; }
|
|
|
|
public long? ProductBatch_ID { get; set; }
|
|
|
|
public string ProductBatch { get; set; }
|
|
|
|
public decimal? Weight { get; set; }
|
|
|
|
public long? ID { get; set; }
|
|
|
|
public string Creator { get; set; }
|
|
}
|
|
}
|