Add files via upload

This commit is contained in:
gopi17701 2018-09-23 12:23:51 -04:00 committed by GitHub
parent 8c926b26fc
commit 4b6ec46c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
}