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

23 lines
634 B

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