2018-12-03 15:27:53 +08:00
|
|
|
package com.gzzn.omms.msgexchangeapi.dao;
|
2018-11-28 16:22:33 +08:00
|
|
|
|
|
|
|
|
import org.springframework.data.repository.CrudRepository;
|
|
|
|
|
|
2018-12-03 15:27:53 +08:00
|
|
|
import com.gzzn.omms.msgexchangeapi.entity.Cmoutmsg;
|
2018-11-28 16:22:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
public interface CmoutmsgDao extends CrudRepository<Cmoutmsg, Long> {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|