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.
DS7/BookingWeb/DB/Model/SysClient.cs

32 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace BookingWeb.DB.Model
{
[Table("SYS_CLIENT")]
public class SysClient
{
[Key]
public string GID { get; set; }
public string NAME { get; set; }
public string CODE { get; set; }
public string URL { get; set; }
public string BANK_NAME_RMB { get; set; }
public string BANK_ACCOUNT_RMB { get; set; }
public string BANK_NAME_USD { get; set; }
public string BANK_ACCOUNT_USD { get; set; }
public string ADDRESS { get; set; }
public string TEL { get; set; }
public string REMARK { get; set; }
public string EMAIL { get; set; }
public string SMTP_SERVER { get; set; }
public int SMTP_PORT { get; set; }
public bool SMTP_SSL { get; set; }
public string MAIL_ACCOUNT { get; set; }
public string MAIL_PASSWORD { get; set; }
}
}