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 = "Receipt_Doc", DisableSyncStructure = true)]
public partial class ReceiptDoc {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
///
/// 易航线_随附单证代码
///
[JsonProperty, Column(Name = "documentAttachedCode", DbType = "varchar(20)")]
public string DocumentAttachedCode { get; set; } = "";
///
/// 易航线_随附单证编号
///
[JsonProperty, Column(Name = "documentAttachedNo", DbType = "varchar(32)")]
public string DocumentAttachedNo { get; set; } = "";
[JsonProperty, Column(Name = "Driect_URL", DbType = "varchar(300)")]
public string DriectURL { get; set; }
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty, Column(Name = "R_GID", DbType = "varchar(50)")]
public string RGID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string RECEIPTTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string URL { get; set; }
}
}