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.

45 lines
1.2 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 = "tCard_Use", DisableSyncStructure = true)]
public partial class TCardUse {
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string Gid { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string BillNo { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CardGID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CardNo { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? InNum { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string Operate { get; set; }
[JsonProperty]
public DateTime? OPTime { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? OutNum { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string Remark { get; set; }
}
}