23a74eb95b843c9b92e15a975a1c79e368833520.svn-base 617 B

123456789101112131415161718192021
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrSteel;
  4. import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrVo;
  5. import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrSteelParam;
  6. import java.util.List;
  7. /**
  8. * @author lune
  9. * @date 2020-8-17
  10. */
  11. public interface BisInspWtuntRgstrSteelService extends CrudService<BisInspWtuntRgstrSteel, BisInspWtuntRgstrSteelParam> {
  12. void insertSteel(BisInspWtuntRgstrVo bisInspWtuntRgstrVo);
  13. // ------------------------- 自定方法 -------------------------
  14. }