| | |
| | | package com.ld.igds.m.view; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.ld.igds.models.DicTrigger; |
| | | import com.ld.igds.models.InoutLossOver; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | * @description: |
| | | * @version: |
| | | * @data:2020年5月28日 |
| | | * |
| | | */ |
| | | @Component |
| | | public class LossOverPR { |
| | |
| | | @Autowired |
| | | private HLossOverService service; |
| | | |
| | | |
| | | /** |
| | | * ${dorado.getDataProvider("lossOverPR#triggerType").getResult()} |
| | | * |
| | | * @return |
| | | */ |
| | | @DataProvider |
| | | public List<DicTrigger> triggerType() { |
| | | List<DicTrigger> list = new ArrayList<DicTrigger>(); |
| | | |
| | | list.add(new DicTrigger("0", "正常")); |
| | | list.add(new DicTrigger("1", "不正常")); |
| | | |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * lossOverPR#pageData |
| | | * |