Subversion Repositories SmartDukaan

Rev

Rev 24700 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.entity.cs;

public enum TicketSearchType {
        
        PARTNER_NAME("Partner Name"),
        TICKET_ID("Ticket Id");
        
        private String value;
        private TicketSearchType(String value){
                this.value = value;
        }
        public String getValue() {
                return value;
        }

}