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.
135 lines
3.1 KiB
C#
135 lines
3.1 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.FtpSet
|
|
{
|
|
|
|
[JsonObject]
|
|
public class FtpSet
|
|
{
|
|
#region private Fields
|
|
|
|
private string _GID= String.Empty;
|
|
private string _CORPID = String.Empty;
|
|
private string _EDINAME = String.Empty;
|
|
private string _SERVERIP = String.Empty;
|
|
private string _FOLDERNAME = String.Empty;
|
|
private string _USERNAME = String.Empty;
|
|
private string _PASSWORD = String.Empty;
|
|
private string _SENDCODE = String.Empty;
|
|
private string _RECEIVECODE = String.Empty;
|
|
private string _SENDNAME = String.Empty;
|
|
private string _SENDATTN = String.Empty;
|
|
private string _SENDTEL = String.Empty;
|
|
private string _SENDEMAIL = String.Empty;
|
|
private string _RECEIVEOP = String.Empty;
|
|
private string _RECEIVESALE = String.Empty;
|
|
private string _RECEIVEDEPT = String.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
|
|
public string GID
|
|
{
|
|
get { return _GID; }
|
|
set { _GID = value; }
|
|
}
|
|
|
|
public string CORPID
|
|
{
|
|
get { return _CORPID; }
|
|
set { _CORPID = value; }
|
|
}
|
|
public string EDINAME
|
|
{
|
|
get { return _EDINAME; }
|
|
set { _EDINAME = value; }
|
|
}
|
|
public string SERVERIP
|
|
{
|
|
get { return _SERVERIP; }
|
|
set { _SERVERIP = value; }
|
|
}
|
|
public string FOLDERNAME
|
|
{
|
|
get { return _FOLDERNAME; }
|
|
set { _FOLDERNAME = value; }
|
|
}
|
|
|
|
public string USERNAME
|
|
{
|
|
get { return _USERNAME; }
|
|
set { _USERNAME = value; }
|
|
}
|
|
|
|
public string PASSWORD
|
|
{
|
|
get { return _PASSWORD; }
|
|
set { _PASSWORD = value; }
|
|
}
|
|
|
|
public string SENDCODE
|
|
{
|
|
get { return _SENDCODE; }
|
|
set { _SENDCODE = value; }
|
|
}
|
|
|
|
public string RECEIVECODE
|
|
{
|
|
get { return _RECEIVECODE; }
|
|
set { _RECEIVECODE = value; }
|
|
}
|
|
public string SENDNAME
|
|
{
|
|
get { return _SENDNAME; }
|
|
set { _SENDNAME = value; }
|
|
}
|
|
public string SENDATTN
|
|
{
|
|
get { return _SENDATTN; }
|
|
set { _SENDATTN = value; }
|
|
}
|
|
public string SENDTEL
|
|
{
|
|
get { return _SENDTEL; }
|
|
set { _SENDTEL = value; }
|
|
}
|
|
public string SENDEMAIL
|
|
{
|
|
get { return _SENDEMAIL; }
|
|
set { _SENDEMAIL = value; }
|
|
}
|
|
|
|
public string RECEIVEOP
|
|
{
|
|
get { return _RECEIVEOP; }
|
|
set { _RECEIVEOP = value; }
|
|
}
|
|
public string RECEIVESALE
|
|
{
|
|
get { return _RECEIVESALE; }
|
|
set { _RECEIVESALE = value; }
|
|
}
|
|
public string RECEIVEDEPT
|
|
{
|
|
get { return _RECEIVEDEPT; }
|
|
set { _RECEIVEDEPT = value; }
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|