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 = "Proc_EIP_OrderNo", DisableSyncStructure = true)] public partial class ProcEIPOrderNo { [JsonProperty, Column(Name = "@BillDate", DbType = "varchar(8)", IsNullable = false)] public string BillDate { get; set; } [JsonProperty, Column(Name = "@BillType", DbType = "varchar(4)", IsNullable = false)] public string BillType { get; set; } } }