|
@ -21,6 +21,8 @@ import org.springframework.data.domain.Sort.Direction;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Created by Reece on 2017/5/6.
|
|
* Created by Reece on 2017/5/6.
|
|
*/
|
|
*/
|
|
@ -75,6 +77,7 @@ public class AppealService extends BaseService {
|
|
createrName = doctor.getName();
|
|
createrName = doctor.getName();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
appeal.setCreateTime(new Date());
|
|
appeal.setCreaterName(createrName);
|
|
appeal.setCreaterName(createrName);
|
|
appealDao.save(appeal);
|
|
appealDao.save(appeal);
|
|
}
|
|
}
|