测试发博客

今天使用world新建博客公司发表csdn博客, 测试是否会有惊喜?

关键是怎么插入代码?

package com.lefu.extra.dao;

 

import java.util.List;

 

import com.lefu.extra.entity.Customer;

import com.lefu.extra.entity.Pos;

 

public interface PosDao {

扫描二维码关注公众号,回复: 3346762 查看本文章

 

    public Pos getPosBySn(String posSn);

    public Pos getPosByPosCati(String string);

    public Pos getPosByCustomerId(Long customerId);

    public Pos getTerminalId(String sn);

    public List<String> getPosStatus(Customer customer);

    public List getMiniPos(Long id);

 

    public List<String> getPosStatus(Long customerNo);

    

    public void updatePosUUidAndName(String uuid,String name,Long id,String sn,String appType);

}

猜你喜欢

转载自blog.csdn.net/du_minchao/article/details/56013484