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.

63 lines
1.8 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 = "ch_fee_ForeignpayDetail", DisableSyncStructure = true)]
public partial class ChFeeForeignpayDetail {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ACCOUNT1 { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ACCOUNT2 { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ACCOUNT3 { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT1 { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT2 { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT3 { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string BILLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string ContactGID { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CURR1 { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(10)")]
public string CURR2 { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(10)")]
public string CURR3 { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(12,5)")]
public decimal? Exchangerate1 { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(12,5)")]
public decimal? Exchangerate2 { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(12,5)")]
public decimal? Exchangerate3 { get; set; } = 0M;
}
}