更新一大堆代码
This commit is contained in:
286
Reportapi/MyCode.Project.Domain/Model/ReturnChangeGoodsDetail.cs
Normal file
286
Reportapi/MyCode.Project.Domain/Model/ReturnChangeGoodsDetail.cs
Normal file
@@ -0,0 +1,286 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SqlSugar;
|
||||
|
||||
namespace MyCode.Project.Domain.Model
|
||||
{
|
||||
///<summary>
|
||||
///退换货商品明细表(记录售后订单中的商品变更详情)
|
||||
///</summary>
|
||||
[SugarTable("ReturnChangeGoodsDetail")]
|
||||
public partial class ReturnChangeGoodsDetail
|
||||
{
|
||||
public ReturnChangeGoodsDetail(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:主键(GUID格式)
|
||||
/// Default:newid()
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true)]
|
||||
public Guid Id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:售后订单ID(关联售后主表)
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public long TradeAfterId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:子订单ID(关联销售明细)
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public long SubTradeId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:商品基础信息ID(关联商品主表)
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public long GoodsId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:商品系统编号(唯一业务标识)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string GoodsNo {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:商品全称(显示名称)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string GoodsName {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:规格ID(关联规格表)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public long? SpecId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:规格组合名称(如:颜色:红;尺寸:XL)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string SpecName {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:计量单位(如:件、KG等)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string Unit {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:销售单价(含税,单位:元)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? Price {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:原始销售数量(单位与Unit字段一致)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? SellCount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:售后原因详细描述
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string ReasonDesc {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:申请退货数量(可含小数)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ReturnCount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:实际退货金额(=退货数量*单价-退货优惠)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ReturnFee {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:补发商品数量
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? SendCount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:退货部分享受的优惠金额
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ReturnDiscounts {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:补发部分享受的优惠金额
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? SendDiscounts {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:补发商品总金额
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? SendFee {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:理论应退金额(未计算分摊)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ShouldReturnFee {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:处理备注信息
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string Remark {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:商品特性标记(1-7分别对应定制/虚拟/卡券/代销/预售/序列号/需安装)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? GoodsAttribute {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:最后修改时间(格式:yyyy-MM-dd HH:mm:ss)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string GmtModified {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:记录创建时间(格式:yyyy-MM-dd HH:mm)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string GmtCreate {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:商品条码(国际标准条码)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string Barcode {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:销售总金额(=单价*数量)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? SellTotal {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:实际退货数量(仓库验收后)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? DeliveryCount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:组合装标识(1=是组合装子商品)
|
||||
/// Default:0
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? IsFit {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:赠品标识(1=是赠品 0=正常商品)
|
||||
/// Default:0
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? IsGift {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:分摊后退货金额(含订单级优惠分摊)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ShareReturnFee {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:分摊后补发金额(含订单级优惠分摊)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ShareSendFee {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:最终应退金额(含所有优惠和运费分摊)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? ShareShouldReturnFee {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:货品批次信息(JSON格式存储)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string GoodsBatchInfoList {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:电商平台子订单编号(如淘宝子订单号)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string SourceSubtradeNo {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:次品数量描述(如:5件破损)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string DefectiveAmount {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:品牌名称
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string BrandName {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:商品唯一序列号(用于高端商品追踪)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string GoodsSerial {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:平台商品ID(第三方平台商品编码)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string PlatGoodsId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public Guid? JackOrdersId {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user