Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mandi.fendan.mapper;
 
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
 
import com.mandi.fendan.persist.BsheetEcgb;
 
public interface BsheetEcgbMapper {
    
    @Select("select * from bsheet_ecgb where bsNo=#{bsNo} ")
    public BsheetEcgb getbyNo(String bsNo);
    
    @Insert("insert into bsheet_ecgb (bsNo,ctime,cname,sate) values (#{bsNo},#{ctime},#{cname},#{sate})")
    public int insert(BsheetEcgb be);
    
    @Delete("delete from bsheet_ecgb where bsNo=#{bsNo} ")
    public int delbyNo(String bsNo);
    
}