| | |
| | | orderBy("index") |
| | | }) |
| | | } |
| | | |
| | | override fun getTaskType(): List<Domainitem> { |
| | | return domainitemMapper.selectByExample(Example(Domainitem::class.java).apply { |
| | | createCriteria().andEqualTo("dcguid", Constant.DOMAIN_GUID_TASK_TYPE) |
| | | orderBy("index") |
| | | }) |
| | | } |
| | | |
| | | override fun getDeadlineType(): List<Domainitem> { |
| | | return domainitemMapper.selectByExample(Example(Domainitem::class.java).apply { |
| | | createCriteria().andEqualTo("dcguid", Constant.DOMAIN_GUID_TASK_DEADLINE_TYPE) |
| | | orderBy("index") |
| | | }) |
| | | } |
| | | |
| | | override fun getLevelType(): List<Domainitem> { |
| | | return domainitemMapper.selectByExample(Example(Domainitem::class.java).apply { |
| | | createCriteria().andEqualTo("dcguid", Constant.DOMAIN_GUID_TASK_LEVEL) |
| | | orderBy("index") |
| | | }) |
| | | } |
| | | } |