package com.doumee.dao.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import java.io.Serializable;
|
|
/**
|
* 就地存取规则项
|
* @author rk
|
* @date 2026/04/08
|
*/
|
@Data
|
@ApiModel("就地存取规则项")
|
public class LocalStoragePricingItemDTO implements Serializable {
|
|
@ApiModelProperty(value = "物品规格主键(category.id, type=4)", required = true, example = "1")
|
@NotNull(message = "物品规格主键不能为空")
|
private Integer categoryId;
|
|
@ApiModelProperty(value = "收费单价", required = true, example = "10.50")
|
@NotNull(message = "收费单价不能为空")
|
private String unitPrice;
|
}
|