diff --git a/AstuteSystem/src/main/java/com/astute/model/ServiceType.java b/AstuteSystem/src/main/java/com/astute/model/ServiceType.java new file mode 100644 index 0000000..ac44447 --- /dev/null +++ b/AstuteSystem/src/main/java/com/astute/model/ServiceType.java @@ -0,0 +1,30 @@ +package com.astute.model; + +import java.sql.Date; + +public class ServiceType { + int serviceTypeId; + String desc; + + public int getServiceTypeId() { + return serviceTypeId; + } + + public void setServiceTypeId(int serviceTypeId) { + this.serviceTypeId = serviceTypeId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public ServiceType(int serviceTypeId, String desc) { + this.serviceTypeId = serviceTypeId; + this.desc = desc; + } + +}