You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
360 B

package com.WR.StudentMS.dao;
import java.util.List;
import com.WR.StudentMS.model.Tchengjilzh;
public interface Tchengjidaolzh {
List<com.WR.StudentMS.model.Tchengjilzh> findAll();
Tchengjilzh findById(String tchengjilzh);
int create(Tchengjilzh tchengjilzh);
int modify(Tchengjilzh tchengjilzh);
int remove(Tchengjilzh tchengjilzh);
}