|
@ -621,4 +621,20 @@ public class Prescription extends IdEntity {
|
|
public void setJwRegisterFee(String jwRegisterFee) {
|
|
public void setJwRegisterFee(String jwRegisterFee) {
|
|
this.jwRegisterFee = jwRegisterFee;
|
|
this.jwRegisterFee = jwRegisterFee;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
public String getDispensaryTypeName() {
|
|
|
|
switch (type) {
|
|
|
|
case 1: {
|
|
|
|
return "自取";
|
|
|
|
}
|
|
|
|
case 2: {
|
|
|
|
return "快递配送";
|
|
|
|
}
|
|
|
|
case 3: {
|
|
|
|
return "健管师配送";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
}
|
|
}
|