/**
 * 运费选项
 */
export enum Shipping {
    /**
     * 不限
     */
    All = 'all',
    /**
     * 日本国内免运费
     */
    Free = 'free',
}