using BWP.B3Frameworks.BO;
|
|
using BWP.B3Frameworks.BO.MoneyTemplate;
|
|
using Forks.EnterpriseServices;
|
|
using Forks.EnterpriseServices.DataForm;
|
|
using Forks.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BWP.B3_YunKen.BO
|
|
{
|
|
|
|
[Serializable, DFClass]
|
|
[LogicName("包装物价格")]
|
|
public class Goods_PackagePrice : Base
|
|
{
|
|
|
|
public long? Goods_ID { get; set; }
|
|
|
|
|
|
[LogicName("包装物价格")]
|
|
public decimal? Price { get; set; }
|
|
|
|
|
|
[LogicName("会计单位")]
|
|
public long? AccountingUnit_ID { get; set; }
|
|
|
|
}
|
|
}
|