You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
|
|
|
|
|
namespace DSWebMobileService
|
|
|
|
|
{
|
|
|
|
|
public class SaleModule
|
|
|
|
|
{
|
|
|
|
|
private string sale = string.Empty;
|
|
|
|
|
private string opdate = string.Empty;
|
|
|
|
|
private string zlusd = string.Empty;
|
|
|
|
|
private string zlrmb = string.Empty;
|
|
|
|
|
private string zlttl = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Sale
|
|
|
|
|
{
|
|
|
|
|
get { return sale; }
|
|
|
|
|
set { sale = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string OPDate
|
|
|
|
|
{
|
|
|
|
|
get { return opdate; }
|
|
|
|
|
set { opdate = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ZLUsd
|
|
|
|
|
{
|
|
|
|
|
get { return zlusd; }
|
|
|
|
|
set { zlusd = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ZLRmb
|
|
|
|
|
{
|
|
|
|
|
get { return zlrmb; }
|
|
|
|
|
set { zlrmb = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ZLTtl
|
|
|
|
|
{
|
|
|
|
|
get { return zlttl; }
|
|
|
|
|
set { zlttl = value; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|