package com.ruoyi.basic.dto;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* @author :yys
|
* @date : 2026/2/3 15:17
|
*/
|
@Data
|
public class ProductModelImportDto {
|
/**
|
* 关联产品id
|
*/
|
@Excel(name = "关联产品id")
|
private Long productId;
|
|
@TableField(exist = false)
|
@Excel(name = "产品名称")
|
private String productName;
|
|
/**
|
* 规格型号
|
*/
|
@Excel(name = "规格型号")
|
private String model;
|
|
/**
|
* 单位
|
*/
|
@Excel(name = "单位")
|
private String unit;
|
|
|
/**
|
* 产品高度
|
*/
|
@Excel(name = "产品高度")
|
private String height;
|
|
/**
|
* 每件数量/支
|
*/
|
@Excel(name = "每件数量/支")
|
private String boxNum;
|
|
/**
|
* 单价(美元)/件
|
*/
|
@Excel(name = "单价(美元)/件")
|
private String dollarPrice;
|
|
/**
|
* 单价(元)/件
|
*/
|
@Excel(name = "单价(元)/件")
|
private String taxInclusiveUnitPrice;
|
|
}
|