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
985 B
C#
36 lines
985 B
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_WMS_SUM_ZX_2", DisableSyncStructure = true)]
|
|
public partial class VWWMSSUMZX2 {
|
|
|
|
[JsonProperty, Column(Name = "ccf", DbType = "numeric(38,2)")]
|
|
public decimal Ccf { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "char(10)")]
|
|
public string ENTERDATE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "nid", DbType = "varchar(60)")]
|
|
public string Nid { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "zxf1", DbType = "numeric(38,2)")]
|
|
public decimal Zxf1 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "zxf2", DbType = "numeric(38,2)")]
|
|
public decimal Zxf2 { get; set; }
|
|
|
|
}
|
|
|
|
}
|