AccountService.java 240 Bytes
Newer Older
manxiaoqiang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package tkio.service;

import common.model.Contract;
import tkio.model.Account;

/**
 * Created by mxq on 2018/1/23.
 */
public interface AccountService {

    Account update(Contract contract);

    Account forbiden(Contract contract);

}