Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsOrderBo.java
2025-07-18 09:39:09 +08:00

52 lines
794 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain.bo;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.*;
/**
* 订单主业务对象 wms_order
*
* @author Joshi
* @date 2025-07-18
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsOrderBo extends BaseEntity {
/**
* 订单ID
*/
private Long orderId;
/**
* 订单编号
*/
private String orderCode;
/**
* 客户名称
*/
private String customerName;
/**
* 销售经理
*/
private String salesManager;
/**
* 订单状态0=新建1=生产中2=已完成3=已取消)
*/
private Integer orderStatus;
/**
* 备注
*/
private String remark;
}