This commit is contained in:
wangjinlei
2024-05-30 16:05:11 +08:00
parent 8e758aa3e8
commit a4b26fbade
4 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
package com.peanut.modules.common.to;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class ChangeCatalogueFeeDto {
private Integer catalogueId;
//0半年1全年
private Integer type ;
private BigDecimal fee;
private Integer productId;
}