| | |
| | | package com.fzzy.igds.service; |
| | | |
| | | import com.fzzy.common.constant.BizTypeEnum; |
| | | import com.fzzy.igds.constant.*; |
| | | import com.fzzy.igds.utils.ContextUtil; |
| | | import com.fzzy.work.data.WorkStatus; |
| | |
| | | list.add(new SysDictData("出库", Constant.TYPE_OUT)); |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> getBizType() { |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData(BizTypeEnum.SYS.getMsg(), BizTypeEnum.SYS.getCode())); |
| | | list.add(new SysDictData(BizTypeEnum.INOUT.getMsg(), BizTypeEnum.INOUT.getCode())); |
| | | list.add(new SysDictData(BizTypeEnum.GRAIN.getMsg(), BizTypeEnum.GRAIN.getCode())); |
| | | list.add(new SysDictData(BizTypeEnum.SECURITY.getMsg(), BizTypeEnum.SECURITY.getCode())); |
| | | list.add(new SysDictData(BizTypeEnum.SUPERVISION.getMsg(), BizTypeEnum.SUPERVISION.getCode())); |
| | | list.add(new SysDictData(BizTypeEnum.SCREEN.getMsg(), BizTypeEnum.SCREEN.getCode())); |
| | | return list; |
| | | } |
| | | } |