This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/** 查价货物硬限制(PRD §4.2.8) */
export const CARGO_LIMITS = {
palletCount: { min: 1, max: 25 },
dimIn: { lengthMax: 999, widthMax: 99, heightMax: 99, min: 1 },
weightLbPerPallet: { min: 0.01, max: 9_999 },
/** 整票总重上限 = 单托重量上限 × 托盘数上限 */
totalWeightLbMax: 9_999 * 25,
} as const;