package com.changhong.epc.admin.service.account;
|
|
import com.changhong.epc.bean.admin.Account;
|
|
import java.util.List;
|
|
public interface AccountService {
|
|
List<Account> selectByDataStart();
|
|
|
int addAccount(Account list);
|
|
int updateState(Account account);
|
|
Account selectAccount(String orderCode);
|
|
int repetitionAccount(Account code);
|
|
Integer updateVoucherCode( Account account);
|
|
int delete(Account account);
|
}
|