## 去掉不需要的实体;
This commit is contained in:
parent
2fe010aac1
commit
aeeb704d65
|
@ -1,35 +0,0 @@
|
|||
package com.hzs.report.member.vo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
|
||||
/**
|
||||
* @description: 月度表名
|
||||
* @author: zhang jing
|
||||
* @date: 2024/3/18 14:26
|
||||
* @param:
|
||||
* @return:
|
||||
**/
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
@Data
|
||||
public class MonthTableNameVo {
|
||||
|
||||
/**
|
||||
* 业绩表名
|
||||
*/
|
||||
private String achieveTableName;
|
||||
/**
|
||||
* 会员结算日表表名
|
||||
*/
|
||||
private String settleTableName;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -1,69 +0,0 @@
|
|||
package com.hzs.report.member.vo;/**
|
||||
* @Description:
|
||||
* @Author: yuhui
|
||||
* @Time: 2024/7/31 13:26
|
||||
* @Classname: ProductSaleProductVO
|
||||
* @PackageName: com.hzs.report.member.vo
|
||||
*/
|
||||
|
||||
import com.hzs.common.core.annotation.Excel;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*@BelongsProject: hzs_cloud
|
||||
*@BelongsPackage: com.hzs.report.member.vo
|
||||
*@Author: yh
|
||||
*@CreateTime: 2024-07-31 13:26
|
||||
*@Description: TODO
|
||||
*@Version: 1.0
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
public class ProductSaleProductVO {
|
||||
|
||||
/**
|
||||
* sku 编码
|
||||
*/
|
||||
@Excel(name = "SKU编码")
|
||||
private String skuCode;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
@Excel(name = "产品名称")
|
||||
private String productName;
|
||||
|
||||
/**
|
||||
* 单位名称
|
||||
*/
|
||||
@Excel(name = "产品单位")
|
||||
private String unitStr;
|
||||
|
||||
|
||||
/**
|
||||
* 产品规格
|
||||
*/
|
||||
@Excel(name = "产品规格")
|
||||
private String productSpecType;
|
||||
|
||||
/**
|
||||
* 商品信息
|
||||
*/
|
||||
@Excel(name = "商品")
|
||||
private List<ProductSaleWaresVO> productSaleWaresVOList;
|
||||
|
||||
|
||||
/**
|
||||
* 产品排序
|
||||
*/
|
||||
private double productSort;
|
||||
|
||||
|
||||
/**
|
||||
* 产品主键
|
||||
*/
|
||||
private Integer pkProduct;
|
||||
}
|
Loading…
Reference in New Issue