16 lines
336 B
Plaintext
16 lines
336 B
Plaintext
package com.bonus.settlement.service;
|
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.bonus.settlement.beans.SettlementTotalBean;
|
|
import com.bonus.sys.BaseServiceImp;
|
|
|
|
|
|
@Service("settlementTotal")
|
|
public class SettlementTotalServiceImp extends BaseServiceImp<SettlementTotalBean> implements SettlementTotalService {
|
|
|
|
|
|
|
|
}
|