use of cn.edu.zjnu.acm.judge.domain.Mail in project judge by zjnu-acm.
the class MailControllerTest method newMail.
private Mail newMail(String from, String to) {
Mail mail = Mail.builder().from(from).to(to).title("title5").content("content12").build();
mailMapper.save(mail);
return mail;
}
Aggregations