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.
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsMessTip
|
|
{
|
|
[JsonObject]
|
|
public class MsMessTipModel : ModelObjectBillHead
|
|
{
|
|
private string _RECEXPENSE = string.Empty;
|
|
private string _RECPAYMENT = string.Empty;
|
|
private string _RECINVOICE = string.Empty;
|
|
private string _SENEXPENSE = string.Empty;
|
|
private string _SENPAYMENT = string.Empty;
|
|
private string _SENINVOICE = string.Empty;
|
|
|
|
[ModelDB]
|
|
public string RECEXPENSE
|
|
{
|
|
get { return _RECEXPENSE; }
|
|
set { _RECEXPENSE = value; }
|
|
}
|
|
[ModelDB]
|
|
public string RECPAYMENT
|
|
{
|
|
get { return _RECPAYMENT; }
|
|
set { _RECPAYMENT = value; }
|
|
}
|
|
[ModelDB]
|
|
public string RECINVOICE
|
|
{
|
|
get { return _RECINVOICE; }
|
|
set { _RECINVOICE = value; }
|
|
}
|
|
[ModelDB]
|
|
public string SENEXPENSE
|
|
{
|
|
get { return _SENEXPENSE; }
|
|
set { _SENEXPENSE = value; }
|
|
}
|
|
[ModelDB]
|
|
public string SENPAYMENT
|
|
{
|
|
get { return _SENPAYMENT; }
|
|
set { _SENPAYMENT = value; }
|
|
}
|
|
[ModelDB]
|
|
public string SENINVOICE
|
|
{
|
|
get { return _SENINVOICE; }
|
|
set { _SENINVOICE = value; }
|
|
}
|
|
}
|
|
} |