mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
8c926b26fc
commit
4b6ec46c78
30
AstuteSystem/src/main/java/com/astute/model/ServiceType.java
Normal file
30
AstuteSystem/src/main/java/com/astute/model/ServiceType.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user