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.

132 lines
3.4 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 = "op_blissue", DisableSyncStructure = true)]
public partial class OpBlissue {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
/// <summary>
/// 单证名称
/// </summary>
[JsonProperty, Column(DbType = "varchar(50)")]
public string BLNAME { get; set; } = "提单";
/// <summary>
/// 单证编号
/// </summary>
[JsonProperty, Column(DbType = "varchar(30)")]
public string BLNO { get; set; }
/// <summary>
/// 单证流水号
/// </summary>
[JsonProperty, Column(DbType = "varchar(30)")]
public string BLORDERNO { get; set; }
/// <summary>
/// 处理状态
/// </summary>
[JsonProperty, Column(DbType = "varchar(50)")]
public string BLSTATUS { get; set; } = "申请提单";
/// <summary>
/// 关联编号
/// </summary>
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSINKNO { get; set; }
/// <summary>
/// 业务编号
/// </summary>
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
/// <summary>
/// 删除标志
/// </summary>
[JsonProperty]
public bool? DElFLAG { get; set; } = false;
[JsonProperty, Column(DbType = "varchar(50)")]
public string EXPRESSCORP { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string EXPRESSNO { get; set; }
[JsonProperty, Column(Name = "id", DbType = "varchar(36)", IsNullable = false)]
public string Id { get; set; } = Guid.NewGuid().ToString().ToUpper();
/// <summary>
/// 删除标志
/// </summary>
[JsonProperty]
public bool? ISADD { get; set; } = false;
/// <summary>
/// 签单方式
/// </summary>
[JsonProperty, Column(DbType = "varchar(12)")]
public string ISSUETYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string ISVESSELPROVE { get; set; }
/// <summary>
/// 处理人
/// </summary>
[JsonProperty, Column(DbType = "varchar(20)")]
public string OPNAME { get; set; }
/// <summary>
/// 处理时间
/// </summary>
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? OPTIME { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? PAYRMB { get; set; } = 0M;
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? PAYTIME { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? PAYUSD { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(1024)")]
public string PUTSINGLE { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? PUTSINGLETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string QCDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string QRDATE { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty, Column(DbType = "varchar(200)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VESSELPROVEREMARK { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? VESSELPROVETIME { get; set; }
}
}