| 1234567891011121314151617181920212223242526 |
- package com.ruoyi.sim.constant;
- public interface FaultContentConst {
- /**
- * 1型
- */
- interface T0001 {
- String F09_OPENED = "00000001";
- String F09_CLOSED = "00000002";
- }
- /**
- * 2型
- */
- interface T0002 {
- }
- /**
- * 3型
- */
- interface T0003 {
- }
- }
|