BizConstant.java 371 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.tanpu.community.api.constants;

public class BizConstant {


    public static class SyncCommentType{
        public static final int SYNC_COMMENT=1;
        public static final int NOT_SYNC_COMMENT=0;
    }

    public static class SyncForwardType{
        public static final int SYNC_FORWARD=1;
        public static final int NOT_SYNC_FORWARD=0;
    }

}