using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Entity.PingTai
{
[SugarTable("cust_fee")]
[Description("消费记录")]
public class PingTaiCustFee : PingTaiDbEntity
{
///
///
///
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
[MaxLength(50)]
public string GID { get; set; }
///
///
///
[MaxLength(50)]
public string BSNO { get; set; }
///
///
///
public decimal? PRICE { get; set; }
///
///
///
public int? BSTYPE { get; set; }
///
///
///
public int? SENDTYPE { get; set; }
///
///
///
public DateTime? SENDTIME { get; set; }
///
///
///
[MaxLength(30)]
public string MBLNO { get; set; }
///
///
///
[MaxLength(30)]
public string HBLNO { get; set; }
///
///
///
[MaxLength(60)]
public string VESSEL { get; set; }
///
///
///
[MaxLength(30)]
public string VOYNO { get; set; }
///
///
///
public DateTime? ETD { get; set; }
///
///
///
[MaxLength(30)]
public string CARRIER { get; set; }
///
///
///
[MaxLength(30)]
public string FORWARDER { get; set; }
///
///
///
[MaxLength(50)]
public string SENDUSERID { get; set; }
///
///
///
[MaxLength(50)]
public string LURURENID { get; set; }
///
///
///
[MaxLength(50)]
public string LURUREN { get; set; }
///
///
///
[MaxLength(50)]
public string SENDUSER { get; set; }
///
///
///
[MaxLength(50)]
public string SENDCOM { get; set; }
///
///
///
[MaxLength(50)]
public string COMNAME { get; set; }
///
///
///
[MaxLength(50)]
public string COMID { get; set; }
///
///
///
[MaxLength(50)]
public string CANGKU { get; set; }
///
///
///
[MaxLength(20)]
public string BSSTATUS { get; set; }
///
///
///
[MaxLength(100)]
public string PORTDISCHARGE { get; set; }
///
///
///
[MaxLength(100)]
public string DESTINATION { get; set; }
///
///
///
[MaxLength(2000)]
public string DESCRIPTION { get; set; }
///
///
///
[MaxLength(600)]
public string MARKS { get; set; }
///
///
///
public decimal? PKGS { get; set; }
///
///
///
[MaxLength(20)]
public string KINDPKGS { get; set; }
///
///
///
public decimal? KGS { get; set; }
///
///
///
public decimal? CBM { get; set; }
///
///
///
[MaxLength(5000)]
public string BEIZHU { get; set; }
///
///
///
[MaxLength(5000)]
public string BEIZHU2 { get; set; }
///
///
///
public DateTime? CREATETIME { get; set; }
///
///
///
public int CtnrCount { get; set; }
///
/// 箱型箱量明细 尺寸*数量 多个逗
///
[MaxLength(4000)]
public string CtnrInfo { get; set; }
///
///
///
[MaxLength(50)]
public string AgentCompanyName { get; set; }
}
}