123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtYhjsExample;
- import com.huimv.xt.dataobject.XtYhjsKey;
- import java.util.List;
- public interface XtYhjsDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int countByExample(XtYhjsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int deleteByExample(XtYhjsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int deleteByPrimaryKey(XtYhjsKey key);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- void insert(XtYhjsKey record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- void insertSelective(XtYhjsKey record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- List<XtYhjsKey> selectByExample(XtYhjsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int updateByExampleSelective(XtYhjsKey record, XtYhjsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_yhjs
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int updateByExample(XtYhjsKey record, XtYhjsExample example);
-
- /**
- * 角色对应的操作用户
- * @param id
- * @return
- */
- List<XtYhjsKey> SelectCzyhByJsid(Integer id);
- }
|