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.

75 lines
2.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 = "Import_receipt", DisableSyncStructure = true)]
public partial class ImportReceipt {
[JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)]
public int Id { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string ContractNo { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; } = "";
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; } = "";
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; } = "";
[JsonProperty]
public byte? Receiptid { get; set; } = 0;
[JsonProperty, Column(DbType = "varchar(50)")]
public string ReceiptNo { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string RECEIPTSTATE { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(100)")]
public string RECEIPTTYPE { get; set; } = "";
[JsonProperty, Column(Name = "receive_date")]
public DateTime? ReceiveDate { get; set; }
[JsonProperty, Column(Name = "remark", DbType = "varchar(150)")]
public string Remark { get; set; }
[JsonProperty, Column(Name = "repeat_date")]
public DateTime? RepeatDate { get; set; }
[JsonProperty, Column(Name = "Send_date")]
public DateTime? SendDate { get; set; }
[JsonProperty, Column(Name = "state")]
public byte? State { get; set; } = 0;
[JsonProperty, Column(Name = "trancer", DbType = "varchar(50)")]
public string Trancer { get; set; }
[JsonProperty, Column(Name = "trancNo", DbType = "varchar(50)")]
public string TrancNo { get; set; }
}
}