package com.ruoyi.sales.dto;
|
|
/**
|
* <br>
|
*
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/27 15:55
|
*/
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* <br>
|
* 销售标签Dto
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/27 15:55
|
*/
|
@Data
|
public class SalesLabelDto {
|
|
@ApiModelProperty("客户名称")
|
private String customerName;
|
|
@ApiModelProperty("销售订单编号")
|
private String salesContractNo;
|
|
@ApiModelProperty("产品名称")
|
private String productName;
|
|
@ApiModelProperty("规格(宽*高=数量)")
|
private String specification;
|
|
@ApiModelProperty("楼层编号/地址")
|
private String floorCode;
|
}
|