Merge pull request 'demand:' (#228) from develop into master
Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/228
This commit is contained in:
commit
466dfb2a73
@ -0,0 +1,83 @@
|
||||
/**
|
||||
* @Project: emis
|
||||
* @Title: MonthlyCustomerShipmentStatVO.java
|
||||
* @author system
|
||||
* @date 2025-11-11
|
||||
* @Copyright: ShangHai Duta 2025 All rights reserved.
|
||||
* @version v1.0
|
||||
* @Description: <p> 月结客户出货统计 VO </p>
|
||||
*/
|
||||
|
||||
package com.xdadan.erp.emis.domain.vo;
|
||||
|
||||
import com.xdadan.erp.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @ClassName MonthlyCustomerShipmentStatVO
|
||||
* @Description 月结客户出货统计VO
|
||||
* @author heyu
|
||||
* @date 2025-11-11
|
||||
*/
|
||||
@Data
|
||||
public class MonthlyCustomerShipmentStatVO implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/* 客户名称 */
|
||||
@Excel(name = "客户名称")
|
||||
private String customerName;
|
||||
|
||||
/* 客户编号 */
|
||||
private String customerCode;
|
||||
|
||||
/* 月结卡号 */
|
||||
@Excel(name = "月结卡号")
|
||||
private String custNo;
|
||||
|
||||
/* 总票数 */
|
||||
@Excel(name = "总票数")
|
||||
private Integer totalTickets;
|
||||
|
||||
/* 总重量 */
|
||||
@Excel(name = "总重量")
|
||||
private BigDecimal totalWeight;
|
||||
|
||||
/* 销售联系人(多个用/分隔) */
|
||||
@Excel(name = "销售联系人")
|
||||
private String salesmen;
|
||||
|
||||
/* 快递票数 */
|
||||
@Excel(name = "快递票数")
|
||||
private Integer expressTickets;
|
||||
|
||||
/* 快递实际重量 */
|
||||
@Excel(name = "快递实际重量")
|
||||
private BigDecimal expressWeight;
|
||||
|
||||
/* 空运票数 */
|
||||
@Excel(name = "空运票数")
|
||||
private Integer airTickets;
|
||||
|
||||
/* 空运实际重量 */
|
||||
@Excel(name = "空运实际重量")
|
||||
private BigDecimal airWeight;
|
||||
|
||||
/* 陆运票数 */
|
||||
@Excel(name = "陆运票数")
|
||||
private Integer landTickets;
|
||||
|
||||
/* 陆运实际重量 */
|
||||
@Excel(name = "陆运实际重量")
|
||||
private BigDecimal landWeight;
|
||||
|
||||
/* 进口票数 */
|
||||
@Excel(name = "进口票数")
|
||||
private Integer importTickets;
|
||||
|
||||
/* 进口实际重量 */
|
||||
@Excel(name = "进口实际重量")
|
||||
private BigDecimal importWeight;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user