using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Dto.Api.Pay;
using ARW.Model.Models.Business.GoodsManager.Goodss;
namespace ARW.Model.Dto.Api.GoodsManager.Goodss
{
///
/// 商品查询对象Api
///
/// @author lwh
/// @date 2023-07-09
///
public class GoodsFreightDto
{
///
/// 待结算商品
///
public List GoodsRequestList { get; set; }
///
/// 地址guid
///
public long CustomerAddressGuid { get; set; }
}
}