9 changed files with 144 additions and 4 deletions
@ -0,0 +1,42 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partymember.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
* @description: 蔬菜产量详情 |
||||
|
* @author qushutong |
||||
|
* @date 2024/3/22 15:08 |
||||
|
* @param |
||||
|
* @return [ {"西红柿":[{ "亿联":"100" }, { "移丰":"59" }]}, {"茄子":[{ "亿联":"100" }, { "移丰":"59" }]} ] |
||||
|
* @Version1.0 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class AegetableResultDTO implements Serializable { |
||||
|
|
||||
|
private String vegetableCategory; |
||||
|
|
||||
|
private List<AegetableResultClildDTO> detailList; |
||||
|
|
||||
|
|
||||
|
@Data |
||||
|
public static class AegetableResultClildDTO implements Serializable { |
||||
|
|
||||
|
private String placeOrgName; |
||||
|
|
||||
|
private Double output; |
||||
|
|
||||
|
private Date growTime; |
||||
|
|
||||
|
private Date marketTime; |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue