屠宰场管理服务
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.

43 lines
1.0 KiB

using BWP.B3Frameworks.BO;
using Forks.EnterpriseServices;
using Forks.EnterpriseServices.DataForm;
using Forks.EnterpriseServices.DomainObjects2;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BWP.B3ClientService.BO
{
[DFClass,Serializable]
[LogicName("盘点单明细")]
public class CarcassInventory_Detail : Base
{
public long CarcassInventory_ID { get; set; }
[LogicName("盘点人")]
public long Worker_ID { get; set; }
[LogicName("时间")]
public DateTime Time { get; set; }
[LogicName("条码")]
public string BarCode { get; set; }
[LogicName("存货")]
public long? Goods_ID { get; set; }
[LogicName("重量")]
public decimal? Weight { get; set; }
[LogicName("存货")]
[ReferenceTo(typeof(Goods), "Name")]
[Join("Goods_ID", "ID")]
public string Goods_Name { get; set; }
[LogicName("盘点人")]
[ReferenceTo(typeof(Worker), "Name")]
[Join("Worker_ID", "ID")]
public string Worker_Name { get; set; }
}
}