61 lines
1.3 KiB
Java
61 lines
1.3 KiB
Java
package com.klp.domain.vo;
|
||
|
||
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||
import com.alibaba.excel.annotation.ExcelProperty;
|
||
import com.klp.common.annotation.ExcelDictFormat;
|
||
import com.klp.common.convert.ExcelDictConvert;
|
||
import lombok.Data;
|
||
|
||
|
||
/**
|
||
* 订单主视图对象 wms_order
|
||
*
|
||
* @author Joshi
|
||
* @date 2025-07-18
|
||
*/
|
||
@Data
|
||
@ExcelIgnoreUnannotated
|
||
public class WmsOrderVo {
|
||
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/**
|
||
* 订单ID
|
||
*/
|
||
@ExcelProperty(value = "订单ID")
|
||
private Long orderId;
|
||
|
||
/**
|
||
* 订单编号
|
||
*/
|
||
@ExcelProperty(value = "订单编号")
|
||
private String orderCode;
|
||
|
||
/**
|
||
* 客户名称
|
||
*/
|
||
@ExcelProperty(value = "客户名称")
|
||
private String customerName;
|
||
|
||
/**
|
||
* 销售经理
|
||
*/
|
||
@ExcelProperty(value = "销售经理")
|
||
private String salesManager;
|
||
|
||
/**
|
||
* 订单状态(0=新建,1=生产中,2=已完成,3=已取消)
|
||
*/
|
||
@ExcelProperty(value = "订单状态", converter = ExcelDictConvert.class)
|
||
@ExcelDictFormat(readConverterExp = "0==新建,1=生产中,2=已完成,3=已取消")
|
||
private Integer orderStatus;
|
||
|
||
/**
|
||
* 备注
|
||
*/
|
||
@ExcelProperty(value = "备注")
|
||
private String remark;
|
||
|
||
|
||
}
|