wuxw
2020-02-03 663362f91ec4e9eb06553a8c4f18ee717ebf3ff7
ReportComponent/src/main/java/com/java110/report/components/fee/StaffFeeManageComponent.java
@@ -3,6 +3,7 @@
import com.java110.core.context.IPageData;
import com.java110.report.smo.fee.IListPayFeeSMO;
import com.java110.report.smo.fee.IListStaffFeeSMO;
import com.java110.report.smo.feeType.IFeeTypeSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
@@ -20,7 +21,7 @@
public class StaffFeeManageComponent {
    @Autowired
    private IListPayFeeSMO listPayFeeSMOImpl;
    private IListStaffFeeSMO listStaffFeeSMOImpl;
    /**
     * 查询应用列表
@@ -29,14 +30,7 @@
     * @return 返回 ResponseEntity 对象
     */
    public ResponseEntity<String> list(IPageData pd) {
        return listPayFeeSMOImpl.list(pd);
        return listStaffFeeSMOImpl.list(pd);
    }
    public IListPayFeeSMO getListPayFeeSMOImpl() {
        return listPayFeeSMOImpl;
    }
    public void setListPayFeeSMOImpl(IListPayFeeSMO listPayFeeSMOImpl) {
        this.listPayFeeSMOImpl = listPayFeeSMOImpl;
    }
}