| 123456789101112131415161718 |
- package com.cyksj.model.views;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * 项目名: yhlxj2
- * 文件名: DistributeGoodsGeneralRateView
- * 创建者: JavaZou
- * 创建时间:2024/1/11 14:26
- */
- @Getter
- @Setter
- public class DistributeGoodsGeneralRateView {
- private Integer rate;
- private String goodsInfo;
- }
|