1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.springblade.modules.farmplant.vo;
|
| import lombok.Data;
| import org.springblade.modules.farmplant.entity.FarmPlant;
|
| /**
| * 农场养殖记录表VO
| * @since 2022-05-12
| * @author zhongrj
| */
| @Data
| public class FarmPlantVO extends FarmPlant {
| private static final long serialVersionUID = 1L;
|
| /**
| * 种类名称
| */
| private String strainName;
|
| }
|
|