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.
 

30 lines
592 B

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