/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
namespace CoreCms.Net.Model.FromBody
{
///
/// 后端编辑订单提交参数
///
public class AdminEditOrderPost
{
///
/// 订单编号
///
public string orderId { get; set; }
///
/// 编辑类型
///
public int editType { get; set; } = 1;
///
/// 门店序列
///
public int storeId { get; set; } = 0;
///
/// 收货人区域
///
public int shipAreaId { get; set; } = 0;
///
/// 收货人
///
public string shipName { get; set; }
///
/// 收货手机号码
///
public string shipMobile { get; set; }
///
/// 收货地址
///
public string shipAddress { get; set; }
///
/// 订单金额
///
public decimal orderAmount { get; set; } = 0;
}
///
/// 后端订单发货提交参数
///
public class AdminOrderShipPost
{
///
/// 订单编号
///
public string orderId { get; set; }
///
/// 快递编码
///
public string logiCode { get; set; }
///
/// 快递公司名称
///
public string logiNo { get; set; }
///
/// 第三方对接物流编码
///
public string deliveryCompanyId { get; set; }
public Dictionary items { get; set; }
///
/// 门店编码
///
public int storeId { get; set; } = 0;
///
/// 收货姓名
///
public string shipName { get; set; }
///
/// 收货手机
///
public string shipMobile { get; set; }
///
/// 收货地址
///
public string shipAddress { get; set; }
///
/// 收货区域编码
///
public int shipAreaId { get; set; } = 0;
///
/// 备注
///
public string memo { get; set; }
///
/// 校园代理SendDistributionID
///
public int? SendDistributionID { get; set; }
}
///
/// 后端订单手动支付提交参数
///
public class AdminOrderDoPayPost
{
///
/// 订单编号
///
public string orderId { get; set; }
///
/// 支付类型
///
public int type { get; set; }
///
/// 支付类型编码
///
public string paymentCode { get; set; }
}
///
/// 前台物流查询接口提交参数
///
public class FMApiLogisticsByApiPost
{
///
/// 快递公司编码
///
public string code { get; set; }
///
/// 物流单号
///
public string no { get; set; }
///
/// 手机号码
///
public string mobile { get; set; }
}
}