jiangping
2025-04-10 2f493ffb97690fe5755098f3a8e7874bab05c611
server/src/main/java/com/doumee/core/constants/Constants.java
@@ -182,4 +182,37 @@
         */
        class IgnoreDate extends Date {}
    }
    /**
     * 文件附件类型
     */
    public interface multiFileType{
        //0问题上报 1跌绊滑上报 2跌绊滑处理 3分配物业主管 4分配处理人 5DCA风险上报 6DCA风险处理 7DCA问题工单图片
//        int sheUpload = 0;
//        int dbhUpload = 1;
//        int dbhDeal = 2;
//        int dbhAllocation = 3;
//        int dbhDealUser = 4;
//        int dcaUpload = 5;
//        int dcaDeal = 6;
//        int dcaWorkOrder= 7;
        //0工单上报 1工单处理 2工单转交
        int upload = 0;
        int deal = 1;
        int passOn = 2;
    }
    public interface workOrderStatus{
        int waitConfirm = 0;
        int waitAllocation = 1;
        int waitDeal = 2;
        int sheClose = 3;
        int wtsClose = 4;
        int close = 5;
    }
}