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.

51 lines
1.4 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_Wmszx_Settlement", DisableSyncStructure = true)]
public partial class VwWmszxSettlement {
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? APFEE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? APRATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ARFEE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ARRATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ASSOCIATEDNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? ENTERDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string GOODSNAME { get; set; }
[JsonProperty, Column(DbType = "numeric(20,4)")]
public decimal? SL { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string WMSNO { get; set; }
}
}