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.7 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 = "Import_Payment", DisableSyncStructure = true)]
public partial class ImportPayment {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string BUYER { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CURRENCY { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? DHF { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? EXCHANGERATE { get; set; } = 0M;
[JsonProperty, Column(Name = "id", IsIdentity = true)]
public int Id { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string OP { get; set; }
[JsonProperty]
public DateTime? PAYTIME { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ReceiveAgio { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ReceiveAmount { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(50)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string SELLER { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? SXF { get; set; } = 0M;
}
}