Pu Zhibing
2 天以前 5dacdee9b54c78372b68140e2b068d03a620eab9
ManagementQYTTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/specialTrain/TLineController.java
@@ -21,6 +21,7 @@
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
@@ -62,6 +63,9 @@
    @Autowired
    private ITLineCompanyService itLineCompanyService;
    @Resource
    private ShiroExtUtil shiroExtUtil;
    /**
     * 跳转到跨城站点管理首页
@@ -156,7 +160,7 @@
            endTime = timeArray[1];
        }
        Page<Map<String, Object>> page = new PageFactory<Map<String, Object>>().defaultPage();
        if (ShiroExtUtil.getUser().getRoleType() != 1) {
        if (shiroExtUtil.getUser().getRoleType() != 1) {
            page.setRecords(null);
        } else {
            page.setRecords(tLineService.getLineList(page, beginTime, endTime, name, insertUser, modelStr, state));
@@ -178,7 +182,7 @@
        tLine.setName(name);
        tLine.setState(1);
        tLine.setInsertTime(new Date());
        tLine.setInsertUserId(ShiroExtUtil.getUser().getId());
        tLine.setInsertUserId(shiroExtUtil.getUser().getId());
        tLineService.insert(tLine);
        //添加线路站点起点+终点
@@ -327,7 +331,7 @@
                lineCompany.setLineId(lineId);
                lineCompany.setCompanyId(jsonObject.getInteger("companyId"));
                lineCompany.setInsertTime(new Date());
                lineCompany.setInsertUserId(ShiroExtUtil.getUser().getId());
                lineCompany.setInsertUserId(shiroExtUtil.getUser().getId());
                itLineCompanyService.insert(lineCompany);
            }
        }