|
@ -6,6 +6,7 @@ import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import javax.persistence.Transient;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
@ -102,6 +103,13 @@ public class MedicineShipmentLog extends UuidIdentityEntityWithOperator implemen
|
|
|
*/
|
|
|
private String dosForm;
|
|
|
|
|
|
@Transient
|
|
|
private String useWay;
|
|
|
@Transient
|
|
|
private String useRate;
|
|
|
@Transient
|
|
|
private String userDose;
|
|
|
|
|
|
public MedicineShipmentLog() {
|
|
|
}
|
|
|
|
|
@ -265,4 +273,28 @@ public class MedicineShipmentLog extends UuidIdentityEntityWithOperator implemen
|
|
|
public void setDosForm(String dosForm) {
|
|
|
this.dosForm = dosForm;
|
|
|
}
|
|
|
|
|
|
public String getUseWay() {
|
|
|
return useWay;
|
|
|
}
|
|
|
|
|
|
public void setUseWay(String useWay) {
|
|
|
this.useWay = useWay;
|
|
|
}
|
|
|
|
|
|
public String getUseRate() {
|
|
|
return useRate;
|
|
|
}
|
|
|
|
|
|
public void setUseRate(String useRate) {
|
|
|
this.useRate = useRate;
|
|
|
}
|
|
|
|
|
|
public String getUserDose() {
|
|
|
return userDose;
|
|
|
}
|
|
|
|
|
|
public void setUserDose(String userDose) {
|
|
|
this.userDose = userDose;
|
|
|
}
|
|
|
}
|