213 lines
4.5 KiB
C#
213 lines
4.5 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using AIMSDAL;
|
|
|
|
namespace AIMSModel
|
|
{
|
|
[Serializable]
|
|
public partial class Provider
|
|
{
|
|
private int? id;
|
|
private string name;
|
|
private string helpCode;
|
|
private string businessLicence;
|
|
private DateTime? businessLicenceValidDate;
|
|
private string fareLicence;
|
|
private DateTime? fareLicenceValidDate;
|
|
private string taxCheckinCertificate;
|
|
private string organiseCodeCertificate;
|
|
private DateTime? organiseCodeCertificateValidDate;
|
|
private string accreditInfo;
|
|
private int? businessLicenceYearIsValid;
|
|
private int? isValid;
|
|
private string operatorNo;
|
|
private string operatorName;
|
|
private DateTime? operateDate;
|
|
private string institucionais;
|
|
private string registerAddress;
|
|
private string bankName;
|
|
private string bankAddress;
|
|
private string registerMoney;
|
|
private DateTime? registerDate;
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? Id
|
|
{
|
|
get{ return id; }
|
|
set{ id=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
get{ return name; }
|
|
set{ name=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string HelpCode
|
|
{
|
|
get{ return helpCode; }
|
|
set{ helpCode=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string BusinessLicence
|
|
{
|
|
get{ return businessLicence; }
|
|
set{ businessLicence=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? BusinessLicenceValidDate
|
|
{
|
|
get{ return businessLicenceValidDate; }
|
|
set{ businessLicenceValidDate=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string FareLicence
|
|
{
|
|
get{ return fareLicence; }
|
|
set{ fareLicence=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? FareLicenceValidDate
|
|
{
|
|
get{ return fareLicenceValidDate; }
|
|
set{ fareLicenceValidDate=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TaxCheckinCertificate
|
|
{
|
|
get{ return taxCheckinCertificate; }
|
|
set{ taxCheckinCertificate=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OrganiseCodeCertificate
|
|
{
|
|
get{ return organiseCodeCertificate; }
|
|
set{ organiseCodeCertificate=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? OrganiseCodeCertificateValidDate
|
|
{
|
|
get{ return organiseCodeCertificateValidDate; }
|
|
set{ organiseCodeCertificateValidDate=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string AccreditInfo
|
|
{
|
|
get{ return accreditInfo; }
|
|
set{ accreditInfo=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? BusinessLicenceYearIsValid
|
|
{
|
|
get{ return businessLicenceYearIsValid; }
|
|
set{ businessLicenceYearIsValid=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int? IsValid
|
|
{
|
|
get{ return isValid; }
|
|
set{ isValid=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OperatorNo
|
|
{
|
|
get{ return operatorNo; }
|
|
set{ operatorNo=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OperatorName
|
|
{
|
|
get{ return operatorName; }
|
|
set{ operatorName=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? OperateDate
|
|
{
|
|
get{ return operateDate; }
|
|
set{ operateDate=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Institucionais
|
|
{
|
|
get{ return institucionais; }
|
|
set{ institucionais=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string RegisterAddress
|
|
{
|
|
get{ return registerAddress; }
|
|
set{ registerAddress=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string BankName
|
|
{
|
|
get{ return bankName; }
|
|
set{ bankName=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string BankAddress
|
|
{
|
|
get{ return bankAddress; }
|
|
set{ bankAddress=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string RegisterMoney
|
|
{
|
|
get{ return registerMoney; }
|
|
set{ registerMoney=value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? RegisterDate
|
|
{
|
|
get{ return registerDate; }
|
|
set{ registerDate=value; }
|
|
}
|
|
}
|
|
}
|