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.
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FreeSql.DataAnnotations;
|
|
namespace djy.Paas.Model
|
|
{
|
|
/// <summary>
|
|
///报关 集装箱货柜数据
|
|
/// </summary>
|
|
public class tb_BaoguanContainer : DataBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 报关订单Gid
|
|
/// </summary>
|
|
public Guid? BaoguanOrderGid { get; set; }
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string ContainerId { get; set; }
|
|
/// <summary>
|
|
/// 箱型类型
|
|
/// </summary>
|
|
public string ContainerMd { get; set; }
|
|
/// <summary>
|
|
///箱型类型名称
|
|
/// </summary>
|
|
public string ContainerMdName { get; set; }
|
|
/// <summary>
|
|
/// 商品项号编号 多个,间隔
|
|
/// </summary>
|
|
public string GoodsNo { get; set; }
|
|
/// <summary>
|
|
/// 箱柜中的商品数据详情
|
|
/// </summary>
|
|
[Column(IsIgnore =true)]
|
|
public List<tb_BaoguanDecList> DecList {get;set;}
|
|
}
|
|
}
|