You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
538 B
34 lines
538 B
package com.xujie.modules.supplier.data;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* @Description 供应商可供物料与MOQ数据 - rqrq
|
|
* @author rqrq
|
|
* @date 2026/07/14
|
|
*/
|
|
@Data
|
|
public class SupplierPartMoqPriceVo {
|
|
|
|
private Integer id;
|
|
|
|
private String site;
|
|
|
|
private String supplierCode;
|
|
|
|
private String supplierName;
|
|
|
|
private String partNo;
|
|
|
|
private String partDesc;
|
|
|
|
private BigDecimal moq;
|
|
|
|
private String currency;
|
|
|
|
private String currencyDesc;
|
|
|
|
private String active;
|
|
}
|