| | |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * 电缆起始方位 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> triggerStartOrientation() { |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData("右边", Constant.GRAIN_START_ORIENTATION_RIGHT)); |
| | | list.add(new SysDictData("右上", Constant.GRAIN_START_ORIENTATION_RIGHT_UP)); |
| | | list.add(new SysDictData("左边", Constant.GRAIN_START_ORIENTATION_LEFT)); |
| | | list.add(new SysDictData("左上", Constant.GRAIN_START_ORIENTATION_LEFT_UP)); |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * 电缆布线方向 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> triggerStartDirection() { |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData("纵向", Constant.GRAIN_START_DIRECTION_PORTRAIT)); |
| | | list.add(new SysDictData("横向", Constant.GRAIN_START_DIRECTION_TRANSVERSE)); |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * 电缆起始点位 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> triggerStartPoint() { |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData("顶部", Constant.GRAIN_START_POINT_TOP)); |
| | | list.add(new SysDictData("底部", Constant.GRAIN_START_POINT_BELOW)); |
| | | |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * 层行转换 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> triggerStartConvert() { |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData("默认", Constant.GRAIN_CONVERT_DEFAULT)); |
| | | list.add(new SysDictData("顺时针", Constant.GRAIN_CONVERT_CLOCKWISE)); |
| | | list.add(new SysDictData("逆时针", Constant.GRAIN_CONVERT_ANTICLOCKWISE)); |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * 筒仓锥形 |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> triggerCableCone() { |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData("无锥形", Constant.CABLE_CONE_0)); |
| | | list.add(new SysDictData("上锥形", Constant.CABLE_CONE_1)); |
| | | list.add(new SysDictData("下锥形", Constant.CABLE_CONE_2)); |
| | | return list; |
| | | } |
| | | |
| | | /** |
| | | * |
| | | * @return |
| | | */ |
| | | public List<SysDictData> getInoutType() { |
| | | |
| | | List<SysDictData> list = new ArrayList<SysDictData>(); |
| | | list.add(new SysDictData("入库", Constant.TYPE_IN)); |
| | | list.add(new SysDictData("出库", Constant.TYPE_OUT)); |
| | | return list; |
| | | } |
| | | } |