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.
84 lines
2.3 KiB
C#
84 lines
2.3 KiB
C#
3 years ago
|
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 = "v_op_blissuelist_Detail", DisableSyncStructure = true)]
|
||
|
public partial class VOpBlissuelistDetail {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string BLSTATUS { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "bsno", DbType = "varchar(100)", IsNullable = false)]
|
||
|
public string Bsno { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string CUSTCARGOAFTER { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string CUSTOMERNAME { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public bool? DElFLAG { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
||
|
public string GID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string ISCHAOQI { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string ISDEPTARREARS { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
||
|
public string LINKGID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
||
|
public string MNGBLSTATUS { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string OPNAME { get; set; }
|
||
|
|
||
|
[JsonProperty]
|
||
|
public DateTime? OPTIME { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
||
|
public string REMARK { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
||
|
public decimal? RMBNODR { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
||
|
public string SALEDEPT { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string SPREMARK { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
||
|
public string STLNAME { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "timestamp")]
|
||
|
public byte[] TimeMark { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
||
|
public decimal? TTLNODR { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
||
|
public decimal? USDNODR { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
||
|
public string VESSEL { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
||
|
public string VOYNO { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|