2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
|
|
|
{
|
|
|
|
|
public class SalesAnalysisBO
|
|
|
|
|
{
|
2013-11-28 10:39:33 +00:00
|
|
|
|
public Guid ProductGroupID { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public decimal Net { get; set; }
|
2013-11-28 10:39:33 +00:00
|
|
|
|
public decimal Vat { get; set; }
|
|
|
|
|
public decimal ServiceTax { get; set; }
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class SalesAnalysisDetailBO
|
|
|
|
|
{
|
|
|
|
|
public string Section { get; set; }
|
|
|
|
|
public string Product { get; set; }
|
|
|
|
|
public decimal Quantity { get; set; }
|
|
|
|
|
public decimal Amount { get; set; }
|
|
|
|
|
}
|
2013-11-16 06:01:58 +00:00
|
|
|
|
|
|
|
|
|
public class SettlementReportBO
|
|
|
|
|
{
|
|
|
|
|
public PaidStatus Status { get; set; }
|
|
|
|
|
public decimal Amount { get; set; }
|
|
|
|
|
}
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|