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.

36 lines
1.2 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 = "proc_isCwCurrencyRate", DisableSyncStructure = true)]
public partial class ProcIsCwCurrencyRate {
[JsonProperty, Column(Name = "@companyid", DbType = "varchar(36)", IsNullable = false)]
public string Companyid { get; set; }
[JsonProperty, Column(Name = "@currency", DbType = "varchar(10)", IsNullable = false)]
public string Currency { get; set; }
[JsonProperty, Column(Name = "@CurrencyGID", DbType = "varchar(36)", IsNullable = false)]
public string CurrencyGID { get; set; }
[JsonProperty, Column(Name = "@STARTGID", DbType = "varchar(36)", IsNullable = false)]
public string STARTGID { get; set; }
[JsonProperty, Column(Name = "@strYEAR", DbType = "varchar(7)", IsNullable = false)]
public string StrYEAR { get; set; }
[JsonProperty, Column(Name = "@userid", DbType = "varchar(36)", IsNullable = false)]
public string Userid { get; set; }
}
}