
6 changed files with 119 additions and 5 deletions
@ -0,0 +1,15 @@ |
|||
package com.yxt.goods.biz.goodsspu; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/7/19 17:42 |
|||
*/ |
|||
@Data |
|||
public class SalesGoodsQuery implements Query { |
|||
private String goodsName; |
|||
private String createOrgSid; |
|||
} |
@ -0,0 +1,62 @@ |
|||
package com.yxt.goods.biz.goodsspu; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/7/19 17:43 |
|||
*/ |
|||
@Data |
|||
public class SalesGoodsVo implements Vo { |
|||
|
|||
/** |
|||
* 辅单位数量 |
|||
*/ |
|||
private String auxiliaryUnit; |
|||
/** |
|||
* 数量 |
|||
*/ |
|||
private String count; |
|||
/** |
|||
* 商品基础信息Sid |
|||
*/ |
|||
private String goodSpuSid; |
|||
/** |
|||
* 商品编码 |
|||
*/ |
|||
private String goodsSkuCode; |
|||
/** |
|||
* 规格型号 |
|||
*/ |
|||
private String goodsSkuOwnSpec; |
|||
/** |
|||
* 商品Skusid |
|||
*/ |
|||
private String goodsSkuSid; |
|||
/** |
|||
* 商品Sku名称 |
|||
*/ |
|||
private String goodsSkuTitle; |
|||
/** |
|||
* 商品名称 |
|||
*/ |
|||
private String goodsSpuName; |
|||
/** |
|||
* 销售单价 |
|||
*/ |
|||
private String price; |
|||
/** |
|||
* 计量单位 |
|||
*/ |
|||
private String unit; |
|||
/** |
|||
* 体积(立方米) |
|||
*/ |
|||
private String volume; |
|||
/** |
|||
* 重量(kg) |
|||
*/ |
|||
private String weight; |
|||
} |
Loading…
Reference in new issue