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.
75 lines
2.0 KiB
C#
75 lines
2.0 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "VW_CURRENCY_EXCHANGE", DisableSyncStructure = true)]
|
|
public partial class VWCURRENCYEXCHANGE {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(3)", IsNullable = false)]
|
|
public string CODENAME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime CREATETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CURRENCYID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? DEFAULTRATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string DESCRIPTION { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ENDTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string Expr1 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string Expr2 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? Expr3 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string Expr4 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? Expr5 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? MODIFIEDTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string MODIFIEDUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string NAME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? STARTTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string TYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? VALUE { get; set; }
|
|
|
|
}
|
|
|
|
}
|