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.
54 lines
1.6 KiB
C#
54 lines
1.6 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 = "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; }
|
|
|
|
/// <summary>
|
|
/// 易航线_随附单证代码
|
|
/// </summary>
|
|
[JsonProperty, Column(Name = "documentAttachedCode", DbType = "varchar(20)")]
|
|
public string DocumentAttachedCode { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 易航线_随附单证编号
|
|
/// </summary>
|
|
[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; }
|
|
|
|
}
|
|
|
|
}
|