1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package org.springblade.modules.farmplant.vo;
|
| import lombok.Data;
| import org.springblade.modules.farmplant.entity.FarmProductStock;
| import org.springblade.modules.recovery.entity.Recovery;
|
| /**
| * 农产品库存VO
| * @since 2022-05-18
| * @author zhongrj
| */
| @Data
| public class FarmProductStockVO extends FarmProductStock {
| private static final long serialVersionUID = 1L;
|
| }
|
|