Search in sources :

Example 1 with Custom

use of com.megagao.production.ssm.domain.Custom in project production_ssm by megagao.

the class CustomServiceImpl method searchCustomByCustomId.

@Override
public EUDataGridResult searchCustomByCustomId(int page, int rows, String customId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Custom> list = customMapper.searchCustomByCustomId(customId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Custom> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Custom(com.megagao.production.ssm.domain.Custom)

Example 2 with Custom

use of com.megagao.production.ssm.domain.Custom in project production_ssm by megagao.

the class CustomServiceImpl method searchCustomByCustomName.

@Override
public EUDataGridResult searchCustomByCustomName(int page, int rows, String customName) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Custom> list = customMapper.searchCustomByCustomName(customName);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Custom> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Custom(com.megagao.production.ssm.domain.Custom)

Example 3 with Custom

use of com.megagao.production.ssm.domain.Custom in project production_ssm by megagao.

the class test method test1.

@Test
public void test1() throws Exception {
    @SuppressWarnings("resource") ApplicationContext context = new ClassPathXmlApplicationContext("spring/applicationContext-*.xml");
    CustomService customService = (CustomService) context.getBean("customServiceImpl");
    Custom custom = new Custom();
    custom.setCustomId("1253");
    custom.setCustomName("aaa");
    customService.insert(custom);
}
Also used : ClassPathXmlApplicationContext(org.springframework.context.support.ClassPathXmlApplicationContext) ApplicationContext(org.springframework.context.ApplicationContext) CustomService(com.megagao.production.ssm.service.CustomService) ClassPathXmlApplicationContext(org.springframework.context.support.ClassPathXmlApplicationContext) Custom(com.megagao.production.ssm.domain.Custom) Test(org.junit.Test)

Example 4 with Custom

use of com.megagao.production.ssm.domain.Custom in project production_ssm by megagao.

the class CustomServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, Custom custom) throws Exception {
    // 查询客户列表
    CustomExample example = new CustomExample();
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Custom> list = customMapper.selectByExample(example);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Custom> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : CustomExample(com.megagao.production.ssm.domain.CustomExample) PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Custom(com.megagao.production.ssm.domain.Custom)

Aggregations

Custom (com.megagao.production.ssm.domain.Custom)4 PageInfo (com.github.pagehelper.PageInfo)3 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)3 CustomExample (com.megagao.production.ssm.domain.CustomExample)1 CustomService (com.megagao.production.ssm.service.CustomService)1 Test (org.junit.Test)1 ApplicationContext (org.springframework.context.ApplicationContext)1 ClassPathXmlApplicationContext (org.springframework.context.support.ClassPathXmlApplicationContext)1