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.

66 lines
1.9 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 = "tMsWlBsFixed", DisableSyncStructure = true)]
public partial class TMsWlBsFixed {
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
public string BillNo { get; set; }
[JsonProperty, Column(DbType = "numeric(27,0)", IsPrimary = true)]
public decimal SerialNo { get; set; } = 0M;
[JsonProperty]
public DateTime? AuditDate { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string Auditoperator { get; set; }
[JsonProperty, Column(DbType = "numeric(10,0)")]
public decimal? AuditStatus { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string CreditDebit { get; set; } = "0";
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal DistCount { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(10,0)")]
public decimal? FeeStatus { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string FeeTypeCode { get; set; }
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string FeeTypeName { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal FsTotal { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string GId { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal JsTotal { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal Price { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(100)")]
public string Remark { get; set; }
[JsonProperty]
public DateTime? SubmitDate { get; set; }
}
}