| 1234567891011121314151617181920 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttGnrlSectBase;
- import cn.com.goldenwater.dcproj.param.AttGnrlSectBaseParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lhc
- * @date 2023-3-15
- */
- public interface AttGnrlSectBaseService extends CrudService<AttGnrlSectBase, AttGnrlSectBaseParam> {
- List<AttGnrlSectBase> getByGnrl(String id);
- // ------------------------- 自定方法 -------------------------
- }
|