屠宰场客户端
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.

28 lines
577 B

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; }
}
}