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.
53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWebMobileService
|
|
{
|
|
public class SaleCustModule
|
|
{
|
|
private string sale = string.Empty;
|
|
private string custname = 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 CustName
|
|
{
|
|
get { return custname; }
|
|
set { custname = 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; }
|
|
}
|
|
}
|
|
} |