namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Sys_BasicInfo
|
{
|
[Key]
|
public int Sys_Id { get; set; }
|
|
[StringLength(100)]
|
public string CorpName { get; set; }
|
|
[StringLength(100)]
|
public string SysName { get; set; }
|
|
[StringLength(100)]
|
public string CorpShortName { get; set; }
|
|
[StringLength(100)]
|
public string Tel { get; set; }
|
|
[StringLength(100)]
|
public string Fax { get; set; }
|
|
[StringLength(100)]
|
public string Addr { get; set; }
|
|
[StringLength(100)]
|
public string Zip { get; set; }
|
|
[StringLength(100)]
|
public string Url { get; set; }
|
|
[StringLength(200)]
|
public string Email { get; set; }
|
|
[StringLength(100)]
|
public string Bank { get; set; }
|
|
[StringLength(100)]
|
public string BankCode { get; set; }
|
|
[StringLength(50)]
|
public string FaRen { get; set; }
|
|
[StringLength(100)]
|
public string RateCode { get; set; }
|
|
public string Icon { get; set; }
|
|
[StringLength(50)]
|
public string Version { get; set; }
|
|
public string Logo { get; set; }
|
|
public string Banner { get; set; }
|
|
public int? ImportDay { get; set; }
|
|
public bool? ImportDelay { get; set; }
|
|
public bool? IsAuditing { get; set; }
|
|
public int? PlatUser_Id { get; set; }
|
|
[StringLength(50)]
|
public string PlatUserCode { get; set; }
|
|
[StringLength(50)]
|
public string PlatUserName { get; set; }
|
|
[StringLength(50)]
|
public string PlatCorpName { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string UserProductCode { get; set; }
|
|
[StringLength(100)]
|
public string UserProductAlias { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|