using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
///
/// 多品名信息返回
///
public class OpCtnGoodsRes
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 业务Id
///
public long BusinessId { get; set; }
///
/// 品名Id
///
[Description("品名Id")]
public long? GoodsId { get; set; }
///
/// 品名 t_code_goods
///
[Description("品名")]
public string GoodsName { get; set; }
///
/// Desc:海关代码
///
[Description("海关代码")]
public string HSCode { get; set; }
///
/// 创建人Id
///
public long CreateBy { get; set; }
///
/// 创建人
///
public string CreateUserName { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
}
}