东方万旗模块
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.
 

46 lines
1.4 KiB

using System;
using BWP.B3Frameworks;
using BWP.B3Frameworks.BO;
using BWP.B3Frameworks.BO.NamedValueTemplate;
using BWP.B3Sale.BO;
using BWP.B3UnitedInfos;
using BWP.B3UnitedInfos.BO;
using Forks.EnterpriseServices;
using Forks.EnterpriseServices.DataForm;
using Forks.EnterpriseServices.DomainObjects2;
using Forks.Utils;
namespace B3_DongFangWanQi.BO {
[DFClass, Serializable, LogicName("产值预测明细")]
public class OutputForecast_Detail : Base {
public long OutputForecast_ID { get; set; }
[LogicName("产量")]
public Money<decimal>? Number { get; set; }
[LogicName("辅数量")]
public Money<decimal>? SecondNumber { get; set; }
[LogicName("比例")]
public Money<decimal>? Rate { get; set; }
[LogicName("存货属性")]
[DFDataKind(B3UnitedInfosConsts.DataSources.存货管理_存货属性)]
[DFExtProperty(B3FrameworksConsts.DFExtProperties.QueryDataKind, B3UnitedInfosConsts.DataSources.存货属性全部)]
[DFExtProperty(B3FrameworksConsts.DFExtProperties.DisplayField, "GoodsProperty_Name")]
public long? GoodsProperty_ID { get; set; }
[LogicName("存货属性名称")]
[ReferenceTo(typeof(GoodsProperty), "Name")]
[Join("GoodsProperty_ID", "ID")]
public string GoodsProperty_Name { get; set; }
public long Goods_ID { get; set; }
}
[Serializable]
public class OutputForecast_DetailCollection : DmoCollection<OutputForecast_Detail> {
}
}