CostChildColumnService.java 317 B

123456789101112131415161718
  1. package com.kcim.service;
  2. import com.kcim.web.request.ChildColumnRequest;
  3. /**
  4. * 成本报表子列定义
  5. *
  6. * @author Wang.YS
  7. * @date 2023-11-01 13:40:48
  8. */
  9. public interface CostChildColumnService {
  10. void addChildColumn(ChildColumnRequest childColumn);
  11. Object getChildColumnList(Long columnCode);
  12. }