using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using BWP.B3Frameworks.BO;
|
|
using Forks.EnterpriseServices.DataForm;
|
|
using Forks.EnterpriseServices.DomainObjects2;
|
|
using TSingSoft.WebPluginFramework;
|
|
|
|
namespace BWP.B3ClientService.BO
|
|
{
|
|
[KeyField("ID", KeyGenType.identity)]
|
|
[Serializable, BOClass, DFClass]
|
|
public class ProductTask
|
|
{
|
|
public long ID { get; set; }
|
|
public string ProductBatch { get; set; }
|
|
public long Goods_ID { get; set; }
|
|
public string Goods_Name { get; set; }
|
|
public decimal Number { get; set; }
|
|
public decimal SecondNumber { get; set; }
|
|
}
|
|
}
|