jx-03
This commit is contained in:
parent
af06d9e095
commit
447943c12c
@ -6,6 +6,9 @@ import cn.iocoder.yudao.module.jx.core.page.TableDataInfo;
|
||||
import cn.iocoder.yudao.module.jx.domain.DriveSchoolTeachingJournal;
|
||||
import cn.iocoder.yudao.module.jx.service.IDriveSchoolTeachingJournalService;
|
||||
import cn.iocoder.yudao.module.jx.utils.ExcelUtil;
|
||||
import cn.iocoder.yudao.module.rescue.domain.RescueCarInfo;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@ -29,24 +32,24 @@ public class DriveSchoolTeachingJournalController extends BaseController
|
||||
* 查询教学日志列表
|
||||
*/
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(DriveSchoolTeachingJournal driveSchoolTeachingJournal)
|
||||
public CommonResult<IPage<?>> list(DriveSchoolTeachingJournal driveSchoolTeachingJournal)
|
||||
{
|
||||
startPage();
|
||||
List<DriveSchoolTeachingJournal> list = driveSchoolTeachingJournalService.selectDriveSchoolTeachingJournalList(driveSchoolTeachingJournal);
|
||||
return getDataTable(list);
|
||||
Page<DriveSchoolTeachingJournal> page = new Page<>(driveSchoolTeachingJournal.getPageNum(), driveSchoolTeachingJournal.getPageSize());
|
||||
return success(driveSchoolTeachingJournalService.selectDriveSchoolTeachingJournalList(driveSchoolTeachingJournal,page));
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出教学日志列表
|
||||
*/
|
||||
//@Log(title = "教学日志", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, DriveSchoolTeachingJournal driveSchoolTeachingJournal)
|
||||
{
|
||||
List<DriveSchoolTeachingJournal> list = driveSchoolTeachingJournalService.selectDriveSchoolTeachingJournalList(driveSchoolTeachingJournal);
|
||||
ExcelUtil<DriveSchoolTeachingJournal> util = new ExcelUtil<DriveSchoolTeachingJournal>(DriveSchoolTeachingJournal.class);
|
||||
util.exportExcel(response, list, "教学日志数据");
|
||||
}
|
||||
// @PostMapping("/export")
|
||||
// public void export(HttpServletResponse response, DriveSchoolTeachingJournal driveSchoolTeachingJournal)
|
||||
// {
|
||||
// Page<DriveSchoolTeachingJournal> page = new Page<>(driveSchoolTeachingJournal.getPageNum(), driveSchoolTeachingJournal.getPageSize());
|
||||
// List<DriveSchoolTeachingJournal> list = driveSchoolTeachingJournalService.selectDriveSchoolTeachingJournalList(driveSchoolTeachingJournal,page);
|
||||
// ExcelUtil<DriveSchoolTeachingJournal> util = new ExcelUtil<DriveSchoolTeachingJournal>(DriveSchoolTeachingJournal.class);
|
||||
// util.exportExcel(response, list, "教学日志数据");
|
||||
// }
|
||||
|
||||
/**
|
||||
* 获取教学日志详细信息
|
||||
|
@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
@ -16,6 +17,7 @@ import java.util.Map;
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Data
|
||||
public class BaseEntity implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -26,7 +28,7 @@ public class BaseEntity implements Serializable
|
||||
private String searchValue;
|
||||
|
||||
/** 创建者 */
|
||||
private String createBy;
|
||||
private String creator;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@ -34,7 +36,13 @@ public class BaseEntity implements Serializable
|
||||
private Date createTime;
|
||||
|
||||
/** 更新者 */
|
||||
private String updateBy;
|
||||
private String updater;
|
||||
|
||||
/** 当前记录起始索引 */
|
||||
private Integer pageNum;
|
||||
|
||||
/** 每页显示记录数 */
|
||||
private Integer pageSize;
|
||||
|
||||
/** 更新时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@ -59,15 +67,6 @@ public class BaseEntity implements Serializable
|
||||
this.searchValue = searchValue;
|
||||
}
|
||||
|
||||
public String getCreateBy()
|
||||
{
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy)
|
||||
{
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public Date getCreateTime()
|
||||
{
|
||||
@ -79,16 +78,6 @@ public class BaseEntity implements Serializable
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getUpdateBy()
|
||||
{
|
||||
return updateBy;
|
||||
}
|
||||
|
||||
public void setUpdateBy(String updateBy)
|
||||
{
|
||||
this.updateBy = updateBy;
|
||||
}
|
||||
|
||||
public Date getUpdateTime()
|
||||
{
|
||||
return updateTime;
|
||||
|
@ -2,6 +2,7 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -11,6 +12,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-25
|
||||
*/
|
||||
@Data
|
||||
public class DriveContractTest extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -26,44 +28,4 @@ public class DriveContractTest extends BaseEntity
|
||||
@Excel(name = "合同内容")
|
||||
private String content;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("content", getContent())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -89,165 +89,4 @@ public class DriveSchoolCar extends BaseEntity
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "二维日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date repairDate;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setBrand(String brand)
|
||||
{
|
||||
this.brand = brand;
|
||||
}
|
||||
|
||||
public String getBrand()
|
||||
{
|
||||
return brand;
|
||||
}
|
||||
public void setCarModel(String carModel)
|
||||
{
|
||||
this.carModel = carModel;
|
||||
}
|
||||
|
||||
public String getCarModel()
|
||||
{
|
||||
return carModel;
|
||||
}
|
||||
public void setCarNo(String carNo)
|
||||
{
|
||||
this.carNo = carNo;
|
||||
}
|
||||
|
||||
public String getCarNo()
|
||||
{
|
||||
return carNo;
|
||||
}
|
||||
public void setCarPhoto(String carPhoto)
|
||||
{
|
||||
this.carPhoto = carPhoto;
|
||||
}
|
||||
|
||||
public String getCarPhoto()
|
||||
{
|
||||
return carPhoto;
|
||||
}
|
||||
public void setCarRegisterDate(Date carRegisterDate)
|
||||
{
|
||||
this.carRegisterDate = carRegisterDate;
|
||||
}
|
||||
|
||||
public Date getCarRegisterDate()
|
||||
{
|
||||
return carRegisterDate;
|
||||
}
|
||||
public void setInspectionDate(Date inspectionDate)
|
||||
{
|
||||
this.inspectionDate = inspectionDate;
|
||||
}
|
||||
|
||||
public Date getInspectionDate()
|
||||
{
|
||||
return inspectionDate;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
public void setUserPhone(String userPhone)
|
||||
{
|
||||
this.userPhone = userPhone;
|
||||
}
|
||||
|
||||
public String getUserPhone()
|
||||
{
|
||||
return userPhone;
|
||||
}
|
||||
public void setCarBlong(String carBlong)
|
||||
{
|
||||
this.carBlong = carBlong;
|
||||
}
|
||||
|
||||
public String getCarBlong()
|
||||
{
|
||||
return carBlong;
|
||||
}
|
||||
public void setDrivingLicence(String drivingLicence)
|
||||
{
|
||||
this.drivingLicence = drivingLicence;
|
||||
}
|
||||
|
||||
public String getDrivingLicence()
|
||||
{
|
||||
return drivingLicence;
|
||||
}
|
||||
public void setOperationCertificate(String operationCertificate)
|
||||
{
|
||||
this.operationCertificate = operationCertificate;
|
||||
}
|
||||
|
||||
public String getOperationCertificate()
|
||||
{
|
||||
return operationCertificate;
|
||||
}
|
||||
public void setOutlineDate(Date outlineDate)
|
||||
{
|
||||
this.outlineDate = outlineDate;
|
||||
}
|
||||
|
||||
public Date getOutlineDate()
|
||||
{
|
||||
return outlineDate;
|
||||
}
|
||||
public void setRepairDate(Date repairDate)
|
||||
{
|
||||
this.repairDate = repairDate;
|
||||
}
|
||||
|
||||
public Date getRepairDate()
|
||||
{
|
||||
return repairDate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("brand", getBrand())
|
||||
.append("carModel", getCarModel())
|
||||
.append("carNo", getCarNo())
|
||||
.append("carPhoto", getCarPhoto())
|
||||
.append("carRegisterDate", getCarRegisterDate())
|
||||
.append("inspectionDate", getInspectionDate())
|
||||
.append("userName", getUserName())
|
||||
.append("userPhone", getUserPhone())
|
||||
.append("carBlong", getCarBlong())
|
||||
.append("drivingLicence", getDrivingLicence())
|
||||
.append("operationCertificate", getOperationCertificate())
|
||||
.append("outlineDate", getOutlineDate())
|
||||
.append("repairDate", getRepairDate())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -67,115 +67,4 @@ public class DriveSchoolCheck extends BaseEntity
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "报名日期")
|
||||
private Date checkTime;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
public void setPhone(String phone)
|
||||
{
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getPhone()
|
||||
{
|
||||
return phone;
|
||||
}
|
||||
public void setCarId(Long carId)
|
||||
{
|
||||
this.carId = carId;
|
||||
}
|
||||
|
||||
public Long getCarId()
|
||||
{
|
||||
return carId;
|
||||
}
|
||||
public void setCarNo(String carNo)
|
||||
{
|
||||
this.carNo = carNo;
|
||||
}
|
||||
|
||||
public String getCarNo()
|
||||
{
|
||||
return carNo;
|
||||
}
|
||||
public void setProblem(String problem)
|
||||
{
|
||||
this.problem = problem;
|
||||
}
|
||||
|
||||
public String getProblem()
|
||||
{
|
||||
return problem;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
public void setMoney(BigDecimal money)
|
||||
{
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
public BigDecimal getMoney()
|
||||
{
|
||||
return money;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("userId", getUserId())
|
||||
.append("userName", getUserName())
|
||||
.append("phone", getPhone())
|
||||
.append("carId", getCarId())
|
||||
.append("carNo", getCarNo())
|
||||
.append("problem", getProblem())
|
||||
.append("content", getContent())
|
||||
.append("money", getMoney())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -35,64 +35,4 @@ public class DriveSchoolContract extends BaseEntity
|
||||
private String userName;
|
||||
private String address;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("userId", getUserId())
|
||||
.append("content", getContent())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("userName", getUserName())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -34,55 +34,4 @@ public class DriveSchoolDeduct extends BaseEntity
|
||||
/** 科目 */
|
||||
@Excel(name = "科目")
|
||||
private String courseSubject;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setDeduct(BigDecimal deduct)
|
||||
{
|
||||
this.deduct = deduct;
|
||||
}
|
||||
|
||||
public BigDecimal getDeduct()
|
||||
{
|
||||
return deduct;
|
||||
}
|
||||
public void setCourseSubject(String courseSubject)
|
||||
{
|
||||
this.courseSubject = courseSubject;
|
||||
}
|
||||
|
||||
public String getCourseSubject()
|
||||
{
|
||||
return courseSubject;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("deduct", getDeduct())
|
||||
.append("courseSubject", getCourseSubject())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -44,74 +44,4 @@ public class DriveSchoolDial extends BaseEntity
|
||||
@Excel(name = "来源")
|
||||
private String type;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setTitle(String title)
|
||||
{
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle()
|
||||
{
|
||||
return title;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
public void setPhoto(String photo)
|
||||
{
|
||||
this.photo = photo;
|
||||
}
|
||||
|
||||
public String getPhoto()
|
||||
{
|
||||
return photo;
|
||||
}
|
||||
public void setType(String type)
|
||||
{
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
return type;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("title", getTitle())
|
||||
.append("content", getContent())
|
||||
.append("photo", getPhoto())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("type", getType())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -12,6 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-10
|
||||
*/
|
||||
@Data
|
||||
public class DriveSchoolDynamic extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -34,65 +36,4 @@ public class DriveSchoolDynamic extends BaseEntity
|
||||
/** 内容 */
|
||||
@Excel(name = "内容")
|
||||
private String content;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setCover(String cover)
|
||||
{
|
||||
this.cover = cover;
|
||||
}
|
||||
|
||||
public String getCover()
|
||||
{
|
||||
return cover;
|
||||
}
|
||||
public void setTitle(String title)
|
||||
{
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle()
|
||||
{
|
||||
return title;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("cover", getCover())
|
||||
.append("title", getTitle())
|
||||
.append("content", getContent())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -107,155 +107,4 @@ public class DriveSchoolExamPass extends BaseEntity
|
||||
/** 考试通过截图 */
|
||||
@Excel(name = "考试通过截图")
|
||||
private String photo;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setJxId(Long jxId)
|
||||
{
|
||||
this.jxId = jxId;
|
||||
}
|
||||
|
||||
public Long getJxId()
|
||||
{
|
||||
return jxId;
|
||||
}
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
public void setPhone(String phone)
|
||||
{
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getPhone()
|
||||
{
|
||||
return phone;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setJlId(Long jlId)
|
||||
{
|
||||
this.jlId = jlId;
|
||||
}
|
||||
|
||||
public Long getJlId()
|
||||
{
|
||||
return jlId;
|
||||
}
|
||||
public void setCourseSubject(String courseSubject)
|
||||
{
|
||||
this.courseSubject = courseSubject;
|
||||
}
|
||||
|
||||
public String getCourseSubject()
|
||||
{
|
||||
return courseSubject;
|
||||
}
|
||||
public void setJlName(String jlName)
|
||||
{
|
||||
this.jlName = jlName;
|
||||
}
|
||||
|
||||
public String getJlName()
|
||||
{
|
||||
return jlName;
|
||||
}
|
||||
public void setDeduct(BigDecimal deduct)
|
||||
{
|
||||
this.deduct = deduct;
|
||||
}
|
||||
|
||||
public BigDecimal getDeduct()
|
||||
{
|
||||
return deduct;
|
||||
}
|
||||
public void setPayTime(Date payTime)
|
||||
{
|
||||
this.payTime = payTime;
|
||||
}
|
||||
|
||||
public Date getPayTime()
|
||||
{
|
||||
return payTime;
|
||||
}
|
||||
public void setCourseId(Long courseId)
|
||||
{
|
||||
this.courseId = courseId;
|
||||
}
|
||||
|
||||
public Long getCourseId()
|
||||
{
|
||||
return courseId;
|
||||
}
|
||||
public void setCoursePrice(BigDecimal coursePrice)
|
||||
{
|
||||
this.coursePrice = coursePrice;
|
||||
}
|
||||
|
||||
public BigDecimal getCoursePrice()
|
||||
{
|
||||
return coursePrice;
|
||||
}
|
||||
public void setOrderNumber(String orderNumber)
|
||||
{
|
||||
this.orderNumber = orderNumber;
|
||||
}
|
||||
|
||||
public String getOrderNumber()
|
||||
{
|
||||
return orderNumber;
|
||||
}
|
||||
public void setPhoto(String photo)
|
||||
{
|
||||
this.photo = photo;
|
||||
}
|
||||
|
||||
public String getPhoto()
|
||||
{
|
||||
return photo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("jxId", getJxId())
|
||||
.append("name", getName())
|
||||
.append("phone", getPhone())
|
||||
.append("userId", getUserId())
|
||||
.append("jlId", getJlId())
|
||||
.append("courseSubject", getCourseSubject())
|
||||
.append("jlName", getJlName())
|
||||
.append("deduct", getDeduct())
|
||||
.append("payTime", getPayTime())
|
||||
.append("courseId", getCourseId())
|
||||
.append("coursePrice", getCoursePrice())
|
||||
.append("orderNumber", getOrderNumber())
|
||||
.append("photo", getPhoto())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -68,6 +68,4 @@ public class DriveSchoolFacility extends BaseEntity
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "年检时间")
|
||||
private Date yearcheckTime;
|
||||
|
||||
|
||||
}
|
||||
|
@ -28,45 +28,4 @@ public class DriveSchoolFile extends BaseEntity
|
||||
/** 上传PDF */
|
||||
@Excel(name = "上传PDF")
|
||||
private String fileAddress;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setFileType(String fileType)
|
||||
{
|
||||
this.fileType = fileType;
|
||||
}
|
||||
|
||||
public String getFileType()
|
||||
{
|
||||
return fileType;
|
||||
}
|
||||
public void setFileAddress(String fileAddress)
|
||||
{
|
||||
this.fileAddress = fileAddress;
|
||||
}
|
||||
|
||||
public String getFileAddress()
|
||||
{
|
||||
return fileAddress;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("fileType", getFileType())
|
||||
.append("fileAddress", getFileAddress())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -57,85 +57,4 @@ public class DriveSchoolInsurance extends BaseEntity
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "保险到期时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date insuranceTime;
|
||||
|
||||
public String getCarNo() {
|
||||
return carNo;
|
||||
}
|
||||
|
||||
public void setCarNo(String carNo) {
|
||||
this.carNo = carNo;
|
||||
}
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setCarId(Long carId)
|
||||
{
|
||||
this.carId = carId;
|
||||
}
|
||||
|
||||
public Long getCarId()
|
||||
{
|
||||
return carId;
|
||||
}
|
||||
public void setCompany(String company)
|
||||
{
|
||||
this.company = company;
|
||||
}
|
||||
|
||||
public String getCompany()
|
||||
{
|
||||
return company;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
public void setMoney(BigDecimal money)
|
||||
{
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
public BigDecimal getMoney()
|
||||
{
|
||||
return money;
|
||||
}
|
||||
public void setInsuranceTime(Date insuranceTime)
|
||||
{
|
||||
this.insuranceTime = insuranceTime;
|
||||
}
|
||||
|
||||
public Date getInsuranceTime()
|
||||
{
|
||||
return insuranceTime;
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -12,6 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-10
|
||||
*/
|
||||
@Data
|
||||
public class DriveSchoolNews extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -34,65 +36,4 @@ public class DriveSchoolNews extends BaseEntity
|
||||
/** 内容 */
|
||||
@Excel(name = "内容")
|
||||
private String content;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setCover(String cover)
|
||||
{
|
||||
this.cover = cover;
|
||||
}
|
||||
|
||||
public String getCover()
|
||||
{
|
||||
return cover;
|
||||
}
|
||||
public void setTitle(String title)
|
||||
{
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle()
|
||||
{
|
||||
return title;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("cover", getCover())
|
||||
.append("title", getTitle())
|
||||
.append("content", getContent())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -12,6 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-28
|
||||
*/
|
||||
@Data
|
||||
public class DriveSchoolNotice extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -30,55 +32,4 @@ public class DriveSchoolNotice extends BaseEntity
|
||||
/** 内容 */
|
||||
@Excel(name = "内容")
|
||||
private String content;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setTitle(String title)
|
||||
{
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle()
|
||||
{
|
||||
return title;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("title", getTitle())
|
||||
.append("content", getContent())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -12,6 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-10
|
||||
*/
|
||||
@Data
|
||||
public class DriveSchoolPhone extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -34,65 +36,4 @@ public class DriveSchoolPhone extends BaseEntity
|
||||
/** 客服电话 */
|
||||
@Excel(name = "客服电话")
|
||||
private String phone;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
public void setPhone(String phone)
|
||||
{
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getPhone()
|
||||
{
|
||||
return phone;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("userId", getUserId())
|
||||
.append("userName", getUserName())
|
||||
.append("phone", getPhone())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -12,6 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-19
|
||||
*/
|
||||
@Data
|
||||
public class DriveSchoolReimbursement extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -38,75 +40,4 @@ public class DriveSchoolReimbursement extends BaseEntity
|
||||
/** 审核状态 */
|
||||
@Excel(name = "审核状态")
|
||||
private String state;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
public void setState(String state)
|
||||
{
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public String getState()
|
||||
{
|
||||
return state;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("userId", getUserId())
|
||||
.append("userName", getUserName())
|
||||
.append("content", getContent())
|
||||
.append("state", getState())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -32,55 +32,4 @@ public class DriveSchoolSeparate extends BaseEntity
|
||||
/** 分账金额 */
|
||||
@Excel(name = "分账金额")
|
||||
private Double money;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setDeptName(String deptName)
|
||||
{
|
||||
this.deptName = deptName;
|
||||
}
|
||||
|
||||
public String getDeptName()
|
||||
{
|
||||
return deptName;
|
||||
}
|
||||
public void setMoney(Double money)
|
||||
{
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
public Double getMoney()
|
||||
{
|
||||
return money;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("deptName", getDeptName())
|
||||
.append("money", getMoney())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,10 @@ package cn.iocoder.yudao.module.jx.domain;
|
||||
|
||||
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.framework.tenant.core.db.TenantBaseDO;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -12,7 +15,14 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author ruoyi
|
||||
* @date 2024-05-19
|
||||
*/
|
||||
public class DriveSchoolTeachingJournal extends BaseEntity
|
||||
@TableName("drive_school_teaching_journal")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class DriveSchoolTeachingJournal extends TenantBaseDO
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ -35,64 +45,11 @@ public class DriveSchoolTeachingJournal extends BaseEntity
|
||||
@Excel(name = "日志内容")
|
||||
private String content;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
/** 当前记录起始索引 */
|
||||
private Integer pageNum;
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setDeptId(Long deptId)
|
||||
{
|
||||
this.deptId = deptId;
|
||||
}
|
||||
/** 每页显示记录数 */
|
||||
private Integer pageSize;
|
||||
|
||||
public Long getDeptId()
|
||||
{
|
||||
return deptId;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
public void setContent(String content)
|
||||
{
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getContent()
|
||||
{
|
||||
return content;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("deptId", getDeptId())
|
||||
.append("userId", getUserId())
|
||||
.append("userName", getUserName())
|
||||
.append("content", getContent())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
@ -1,10 +1,13 @@
|
||||
package cn.iocoder.yudao.module.jx.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 地区实体类
|
||||
* */
|
||||
@Data
|
||||
public class RegionDto {
|
||||
|
||||
private Integer id;
|
||||
@ -20,47 +23,4 @@ public class RegionDto {
|
||||
private List<RegionDto> city;
|
||||
|
||||
private List<RegionDto> region;
|
||||
|
||||
public Integer getId(){
|
||||
return id;
|
||||
}
|
||||
public void setId(Integer id){
|
||||
this.id=id;
|
||||
}
|
||||
public String getName(){
|
||||
return name;
|
||||
}
|
||||
public void setName(String name){
|
||||
this.name=name;
|
||||
}
|
||||
public Integer getPid(){
|
||||
return pid;
|
||||
}
|
||||
public void setPid(Integer pid){
|
||||
this.pid=pid;
|
||||
}
|
||||
public String getCode(){
|
||||
return code;
|
||||
}
|
||||
public void setCode(String code){
|
||||
this.code=code;
|
||||
}
|
||||
public String getLevel(){
|
||||
return level;
|
||||
}
|
||||
public void setLevel(String level){
|
||||
this.level=level;
|
||||
}
|
||||
public List<RegionDto> getCity() {
|
||||
return city;
|
||||
}
|
||||
public void setCity(List<RegionDto> city) {
|
||||
this.city = city;
|
||||
}
|
||||
public List<RegionDto> getRegion() {
|
||||
return region;
|
||||
}
|
||||
public void setRegion(List<RegionDto> region) {
|
||||
this.region = region;
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,11 @@ package cn.iocoder.yudao.module.jx.mapper;
|
||||
|
||||
|
||||
import cn.iocoder.yudao.module.jx.domain.DriveSchoolTeachingJournal;
|
||||
import cn.iocoder.yudao.module.rescue.domain.RescueCarInfo;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -29,7 +33,7 @@ public interface DriveSchoolTeachingJournalMapper
|
||||
* @param driveSchoolTeachingJournal 教学日志
|
||||
* @return 教学日志集合
|
||||
*/
|
||||
public List<DriveSchoolTeachingJournal> selectDriveSchoolTeachingJournalList(DriveSchoolTeachingJournal driveSchoolTeachingJournal);
|
||||
public IPage<DriveSchoolTeachingJournal> selectDriveSchoolTeachingJournalList(@Param("entity") DriveSchoolTeachingJournal driveSchoolTeachingJournal, Page<DriveSchoolTeachingJournal> page);
|
||||
|
||||
/**
|
||||
* 新增教学日志
|
||||
|
@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.jx.payment.entity;
|
||||
import cn.iocoder.yudao.annotation.Excel;
|
||||
import cn.iocoder.yudao.module.jx.core.page.BaseEntity;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@ -14,6 +15,7 @@ import java.util.Date;
|
||||
* @author ruoyi
|
||||
* @date 2024-04-25
|
||||
*/
|
||||
@Data
|
||||
public class DriveSchoolBooking extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@ -38,69 +40,4 @@ public class DriveSchoolBooking extends BaseEntity
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "预约日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date bookingTime;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setJlId(Long jlId)
|
||||
{
|
||||
this.jlId = jlId;
|
||||
}
|
||||
|
||||
public Long getJlId()
|
||||
{
|
||||
return jlId;
|
||||
}
|
||||
public void setJxId(Long jxId)
|
||||
{
|
||||
this.jxId = jxId;
|
||||
}
|
||||
|
||||
public Long getJxId()
|
||||
{
|
||||
return jxId;
|
||||
}
|
||||
public void setIsMorning(Long isMorning)
|
||||
{
|
||||
this.isMorning = isMorning;
|
||||
}
|
||||
|
||||
public Long getIsMorning()
|
||||
{
|
||||
return isMorning;
|
||||
}
|
||||
public void setBookingTime(Date bookingTime)
|
||||
{
|
||||
this.bookingTime = bookingTime;
|
||||
}
|
||||
|
||||
public Date getBookingTime()
|
||||
{
|
||||
return bookingTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("jlId", getJlId())
|
||||
.append("jxId", getJxId())
|
||||
.append("isMorning", getIsMorning())
|
||||
.append("bookingTime", getBookingTime())
|
||||
.toString();
|
||||
}
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
||||
|
@ -174,131 +174,4 @@ public class DriveSchoolPay extends BaseEntity
|
||||
|
||||
private DriveSchoolCourse driveSchoolCourse;
|
||||
|
||||
// public void setId(Long id)
|
||||
// {
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public Long getId()
|
||||
// {
|
||||
// return id;
|
||||
// }
|
||||
// public void setName(String name)
|
||||
// {
|
||||
// this.name = name;
|
||||
// }
|
||||
//
|
||||
// public String getName()
|
||||
// {
|
||||
// return name;
|
||||
// }
|
||||
// public void setPhone(String phone)
|
||||
// {
|
||||
// this.phone = phone;
|
||||
// }
|
||||
//
|
||||
// public String getPhone()
|
||||
// {
|
||||
// return phone;
|
||||
// }
|
||||
// public void setIdentity(String identity)
|
||||
// {
|
||||
// this.identity = identity;
|
||||
// }
|
||||
//
|
||||
// public String getIdentity()
|
||||
// {
|
||||
// return identity;
|
||||
// }
|
||||
// public void setState(Long state)
|
||||
// {
|
||||
// this.state = state;
|
||||
// }
|
||||
//
|
||||
// public Long getState()
|
||||
// {
|
||||
// return state;
|
||||
// }
|
||||
// public void setUserId(Long userId)
|
||||
// {
|
||||
// this.userId = userId;
|
||||
// }
|
||||
//
|
||||
// public Long getUserId()
|
||||
// {
|
||||
// return userId;
|
||||
// }
|
||||
// public void setJlId(Long jlId)
|
||||
// {
|
||||
// this.jlId = jlId;
|
||||
// }
|
||||
//
|
||||
// public Long getJlId()
|
||||
// {
|
||||
// return jlId;
|
||||
// }
|
||||
// public void setJxId(Long jxId)
|
||||
// {
|
||||
// this.jxId = jxId;
|
||||
// }
|
||||
//
|
||||
// public Long getJxId()
|
||||
// {
|
||||
// return jxId;
|
||||
// }
|
||||
// public void setCourseId(Long courseId)
|
||||
// {
|
||||
// this.courseId = courseId;
|
||||
// }
|
||||
//
|
||||
// public Long getCourseId()
|
||||
// {
|
||||
// return courseId;
|
||||
// }
|
||||
// public void setStartPay(Long startPay)
|
||||
// {
|
||||
// this.startPay = startPay;
|
||||
// }
|
||||
//
|
||||
// public Long getStartPay()
|
||||
// {
|
||||
// return startPay;
|
||||
// }
|
||||
// public void setOrderNumber(String orderNumber)
|
||||
// {
|
||||
// this.orderNumber = orderNumber;
|
||||
// }
|
||||
//
|
||||
// public String getOrderNumber()
|
||||
// {
|
||||
// return orderNumber;
|
||||
// }
|
||||
// public void setAfternoon(Long afternoon)
|
||||
// {
|
||||
// this.afternoon = afternoon;
|
||||
// }
|
||||
//
|
||||
// public Long getAfternoon()
|
||||
// {
|
||||
// return afternoon;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public String toString() {
|
||||
// return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
// .append("id", getId())
|
||||
// .append("name", getName())
|
||||
// .append("phone", getPhone())
|
||||
// .append("identity", getIdentity())
|
||||
// .append("state", getState())
|
||||
// .append("userId", getUserId())
|
||||
// .append("jlId", getJlId())
|
||||
// .append("jxId", getJxId())
|
||||
// .append("courseId", getCourseId())
|
||||
// .append("startPay", getStartPay())
|
||||
// .append("createTime", getCreateTime())
|
||||
// .append("orderNumber", getOrderNumber())
|
||||
// .append("afternoon", getAfternoon())
|
||||
// .toString();
|
||||
// }
|
||||
}
|
||||
|
@ -1,6 +1,9 @@
|
||||
package cn.iocoder.yudao.module.jx.service;
|
||||
|
||||
import cn.iocoder.yudao.module.jx.domain.DriveSchoolTeachingJournal;
|
||||
import cn.iocoder.yudao.module.rescue.domain.RescueCarInfo;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -26,7 +29,7 @@ public interface IDriveSchoolTeachingJournalService
|
||||
* @param driveSchoolTeachingJournal 教学日志
|
||||
* @return 教学日志集合
|
||||
*/
|
||||
public List<DriveSchoolTeachingJournal> selectDriveSchoolTeachingJournalList(DriveSchoolTeachingJournal driveSchoolTeachingJournal);
|
||||
public IPage<DriveSchoolTeachingJournal> selectDriveSchoolTeachingJournalList(DriveSchoolTeachingJournal driveSchoolTeachingJournal, Page<DriveSchoolTeachingJournal> page);
|
||||
|
||||
/**
|
||||
* 新增教学日志
|
||||
|
@ -7,7 +7,8 @@ import cn.iocoder.yudao.module.system.api.user.dto.AdminUserRespDTO;
|
||||
import cn.iocoder.yudao.module.jx.domain.DriveSchoolTeachingJournal;
|
||||
import cn.iocoder.yudao.module.jx.mapper.DriveSchoolTeachingJournalMapper;
|
||||
import cn.iocoder.yudao.module.jx.service.IDriveSchoolTeachingJournalService;
|
||||
import com.thoughtworks.xstream.core.SecurityUtils;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.apache.commons.lang3.ObjectUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
@ -53,13 +54,11 @@ public class DriveSchoolTeachingJournalServiceImpl implements IDriveSchoolTeachi
|
||||
* @return 教学日志
|
||||
*/
|
||||
@Override
|
||||
public List<DriveSchoolTeachingJournal> selectDriveSchoolTeachingJournalList(DriveSchoolTeachingJournal driveSchoolTeachingJournal)
|
||||
public IPage<DriveSchoolTeachingJournal> selectDriveSchoolTeachingJournalList(DriveSchoolTeachingJournal driveSchoolTeachingJournal, Page<DriveSchoolTeachingJournal> page)
|
||||
{
|
||||
Long userId = SecurityFrameworkUtils.getLoginUserId();
|
||||
AdminUserRespDTO user = userApi.getUser(userId);
|
||||
Long deptId = user.getDeptId();
|
||||
Long deptId = SecurityFrameworkUtils.getLoginUserDeptId();
|
||||
driveSchoolTeachingJournal.setDeptId(deptId);
|
||||
return driveSchoolTeachingJournalMapper.selectDriveSchoolTeachingJournalList(driveSchoolTeachingJournal);
|
||||
return driveSchoolTeachingJournalMapper.selectDriveSchoolTeachingJournalList(driveSchoolTeachingJournal,page);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -92,7 +91,7 @@ public class DriveSchoolTeachingJournalServiceImpl implements IDriveSchoolTeachi
|
||||
@Override
|
||||
public int updateDriveSchoolTeachingJournal(DriveSchoolTeachingJournal driveSchoolTeachingJournal)
|
||||
{
|
||||
driveSchoolTeachingJournal.setUpdateTime(DateUtils.getNowDate());
|
||||
//driveSchoolTeachingJournal.setUpdateTime(DateUtils.getNowDate());
|
||||
return driveSchoolTeachingJournalMapper.updateDriveSchoolTeachingJournal(driveSchoolTeachingJournal);
|
||||
}
|
||||
|
||||
|
@ -12,13 +12,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="userName" column="user_name" />
|
||||
<result property="driveLicense" column="drive_license" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveCarBindVo">
|
||||
select id, dept_id, car_id, drive_school_coach_id, user_name, drive_license, create_time, create_by, update_time, update_by from drive_car_bind
|
||||
select id, dept_id, car_id, drive_school_coach_id, user_name, drive_license, create_time, creator, update_time, updater from drive_car_bind
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveCarBindList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveCarBind" resultMap="DriveCarBindResult">
|
||||
@ -46,9 +46,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userName != null">user_name,</if>
|
||||
<if test="driveLicense != null">drive_license,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -72,9 +72,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userName != null">user_name = #{userName},</if>
|
||||
<if test="driveLicense != null">drive_license = #{driveLicense},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -9,13 +9,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="deptId" column="dept_id" />
|
||||
<result property="content" column="content" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveContractTestVo">
|
||||
select id, dept_id, content, create_time, create_by, update_time, update_by from drive_contract_test
|
||||
select id, dept_id, content, create_time, creator, update_time, updater from drive_contract_test
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveContractTestList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveContractTest" resultMap="DriveContractTestResult">
|
||||
@ -37,9 +37,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deptId != null">dept_id,</if>
|
||||
<if test="content != null">content,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -57,9 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||
<if test="content != null">content = #{content},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -21,9 +21,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="outlineDate" column="outline_date" />
|
||||
<result property="repairDate" column="repair_date" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="baoxianSttime" column="baoxian_sttime" />
|
||||
<result property="baoxianEntime" column="baoxian_entime" />
|
||||
<result property="company" column="company" />
|
||||
@ -78,9 +78,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="outlineDate != null">outline_date,</if>
|
||||
<if test="repairDate != null">repair_date,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="baoxianSttime != null">baoxian_sttime,</if>
|
||||
<if test="baoxianEntime != null">baoxian_entime,</if>
|
||||
<if test="company != null">company,</if>
|
||||
@ -130,9 +130,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="outlineDate != null">outline_date = #{outlineDate},</if>
|
||||
<if test="repairDate != null">repair_date = #{repairDate},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="baoxianSttime != null">baoxian_sttime = #{baoxianSttime},</if>
|
||||
<if test="baoxianEntime != null">baoxian_entime = #{baoxianEntime},</if>
|
||||
<if test="company != null">company = #{company},</if>
|
||||
|
@ -16,9 +16,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="money" column="money" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="outTime" column="out_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="carsId" column="carsId" />
|
||||
<result property="carLong" column="carLong" />
|
||||
<result property="carRepair" column="carRepair" />
|
||||
@ -31,7 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolCarRepairVo">
|
||||
select id, out_time,carBian,photo,carExpert,carCheck,carExchange,carRepaired,carRepair,carLong,carsId,dept_id, user_id, car_id,car_no, user_name,problem, content, money, create_time, create_by, update_time, update_by from drive_school_car_repair
|
||||
select id, out_time,carBian,photo,carExpert,carCheck,carExchange,carRepaired,carRepair,carLong,carsId,dept_id, user_id, car_id,car_no, user_name,problem, content, money, create_time, creator, update_time, updater from drive_school_car_repair
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolCarRepairList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolCarRepair" resultMap="DriveSchoolCarRepairResult">
|
||||
@ -67,9 +67,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null and content != ''">content,</if>
|
||||
<if test="money != null">money,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="carBian != null">carBian,</if>
|
||||
<if test="carExpert != null">carExpert,</if>
|
||||
<if test="carCheck != null">carCheck,</if>
|
||||
@ -120,9 +120,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null and content != ''">content = #{content},</if>
|
||||
<if test="money != null">money = #{money},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="carsId != null">carsId = #{carsId},</if>
|
||||
<if test="carLong != null">carLong = #{carLong},</if>
|
||||
<if test="carRepair != null">carRepair = #{carRepair},</if>
|
||||
|
@ -18,14 +18,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="content" column="content" />
|
||||
<result property="money" column="money" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="checkTime" column="checkTime" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolCheckVo">
|
||||
select id, dept_id, user_id,coach,manager, checkTime,user_name, phone, car_id, car_no, problem, content, money, create_time, create_by, update_time, update_by from drive_school_check
|
||||
select id, dept_id, user_id,coach,manager, checkTime,user_name, phone, car_id, car_no, problem, content, money, create_time, creator, update_time, updater from drive_school_check
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolCheckList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolCheck" resultMap="DriveSchoolCheckResult">
|
||||
@ -64,9 +64,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null and content != ''">content,</if>
|
||||
<if test="money != null">money,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="checkTime != null">checkTime,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -104,9 +104,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null and content != ''">content = #{content},</if>
|
||||
<if test="money != null">money = #{money},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="checkTime != null">checkTime = #{checkTime},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
|
@ -21,16 +21,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="driveCardType" column="drive_card_type" />
|
||||
<result property="subjectType" column="subject_type" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="indenty" column="indenty" />
|
||||
<result property="carId" column="carId" />
|
||||
<result property="address" column="address" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolCoachVo">
|
||||
select id,address, carId,indenty,dept_id, image, drive_license,instructor_name, phone, student,age, sex, average_star, experience_year, instructor_desc, driving_year, drive_card_type,subject_type, create_time, create_by, update_time, update_by from drive_school_coach
|
||||
select id,address, carId,indenty,dept_id, image, drive_license,instructor_name, phone, student,age, sex, average_star, experience_year, instructor_desc, driving_year, drive_card_type,subject_type, create_time, creator, update_time, updater from drive_school_coach
|
||||
</sql>
|
||||
|
||||
<select id="selectAllJlId" resultMap="DriveSchoolCoachResult">
|
||||
@ -98,9 +98,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="driveCardType != null">drive_card_type,</if>
|
||||
<if test="subjectType != null">subject_type,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="indenty != null">indenty,</if>
|
||||
<if test="carId != null">carId,</if>
|
||||
<if test="address != null">address,</if>
|
||||
@ -149,9 +149,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="driveCardType != null">drive_card_type = #{driveCardType},</if>
|
||||
<if test="subjectType != null">subject_type = #{subjectType},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="indenty != null">indenty = #{indenty},</if>
|
||||
<if test="carId != null">carId = #{carId},</if>
|
||||
<if test="address != null">address = #{address},</if>
|
||||
|
@ -10,14 +10,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="userId" column="user_id" />
|
||||
<result property="content" column="content" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="userName" column="user_name" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolContractVo">
|
||||
select id, dept_id, user_id, content, create_time, create_by, update_time, update_by, user_name from drive_school_contract
|
||||
select id, dept_id, user_id, content, create_time, creator, update_time, updater, user_name from drive_school_contract
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolContractList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolContract" resultMap="DriveSchoolContractResult">
|
||||
@ -44,9 +44,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userId != null">user_id,</if>
|
||||
<if test="content != null">content,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="userName != null">user_name,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -68,9 +68,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userId != null">user_id = #{userId},</if>
|
||||
<if test="content != null">content = #{content},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="userName != null">user_name = #{userName},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
|
@ -18,14 +18,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="photo" column="photo" />
|
||||
<result property="describ" column="describ" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="favour" column="favour" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolCourseVo">
|
||||
select id, dept_id, favour,type, name, automatic, license, day_start, day_end, price,reserve_money, photo, describ, create_time, create_by, update_time, update_by from drive_school_course
|
||||
select id, dept_id, favour,type, name, automatic, license, day_start, day_end, price,reserve_money, photo, describ, create_time, creator, update_time, updater from drive_school_course
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolCourseList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolCourse" resultMap="DriveSchoolCourseResult">
|
||||
@ -106,9 +106,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="photo != null">photo,</if>
|
||||
<if test="describ != null">describ,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="favour != null">favour,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -146,9 +146,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="photo != null">photo = #{photo},</if>
|
||||
<if test="describ != null">describ = #{describ},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="favour != null">favour = #{favour},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
|
@ -20,13 +20,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="isSign" column="is_sign" />
|
||||
<result property="paymentStatus" column="payment_status" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolCourseOrderVo">
|
||||
select id, order_no, dept_id, user_id,rest_money,is_sign, user_name, user_phone, user_no, user_sex, course_id, course_name, reserve_money, payment_status, create_time, create_by, update_time, update_by from drive_school_course_order
|
||||
select id, order_no, dept_id, user_id,rest_money,is_sign, user_name, user_phone, user_no, user_sex, course_id, course_name, reserve_money, payment_status, create_time, creator, update_time, updater from drive_school_course_order
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolCourseOrderList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolCourseOrder" resultMap="DriveSchoolCourseOrderResult">
|
||||
@ -70,9 +70,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="restMoney != null">rest_money,</if>
|
||||
<if test="paymentStatus != null">payment_status,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="orderNo != null">#{orderNo},</if>
|
||||
@ -112,9 +112,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="restMoney != null">rest_money = #{restMoney},</if>
|
||||
<if test="paymentStatus != null">payment_status = #{paymentStatus},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -20,16 +20,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="registrationCertificateIssueDate" column="registration_certificate_issue_date" />
|
||||
<result property="registrationCertificateExpiryDate" column="registration_certificate_expiry_date" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="filingCover" column="filing_cover" />
|
||||
<result property="businessLicenseCover" column="business_icense_cover" />
|
||||
<result property="deptId" column="dept_id" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolCredentialsVo">
|
||||
select id, school_name, business_license_number, legal_representative, legal_id_number, bank_account_name, bank_account_number, bank_name, bank_branch, license_issue_date, license_expiry_date, registration_certificate_number, registration_certificate_issue_date, registration_certificate_expiry_date, create_time, create_by, update_time, update_by, filing_cover, business_icense_cover, dept_id from drive_school_credentials
|
||||
select id, school_name, business_license_number, legal_representative, legal_id_number, bank_account_name, bank_account_number, bank_name, bank_branch, license_issue_date, license_expiry_date, registration_certificate_number, registration_certificate_issue_date, registration_certificate_expiry_date, create_time, creator, update_time, updater, filing_cover, business_icense_cover, dept_id from drive_school_credentials
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolCredentialsList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolCredentials" resultMap="DriveSchoolCredentialsResult">
|
||||
@ -73,9 +73,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="registrationCertificateIssueDate != null">registration_certificate_issue_date,</if>
|
||||
<if test="registrationCertificateExpiryDate != null">registration_certificate_expiry_date,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="filingCover != null">filing_cover,</if>
|
||||
<if test="businessLicenseCover != null">business_icense_cover,</if>
|
||||
<if test="deptId != null">dept_id,</if>
|
||||
@ -121,9 +121,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="registrationCertificateIssueDate != null">registration_certificate_issue_date = #{registrationCertificateIssueDate},</if>
|
||||
<if test="registrationCertificateExpiryDate != null">registration_certificate_expiry_date = #{registrationCertificateExpiryDate},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="filingCover != null">filing_cover = #{filingCover},</if>
|
||||
<if test="businessLicenseCover != null">business_icense_cover = #{businessLicenseCover},</if>
|
||||
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||
|
@ -14,15 +14,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="instructorLog" column="instructor_log" />
|
||||
<result property="permissionControl" column="permission_control" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="deptId" column="dept_id" />
|
||||
<result property="logType" column="log_type" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolDailyManagementVo">
|
||||
select id, log_name, completion_status, completion_cover, related_documents, manager_log, instructor_log, permission_control, create_time, create_by, update_time, update_by, dept_id, log_type from drive_school_daily_management
|
||||
select id, log_name, completion_status, completion_cover, related_documents, manager_log, instructor_log, permission_control, create_time, creator, update_time, updater, dept_id, log_type from drive_school_daily_management
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolDailyManagementList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolDailyManagement" resultMap="DriveSchoolDailyManagementResult">
|
||||
@ -56,9 +56,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="instructorLog != null">instructor_log,</if>
|
||||
<if test="permissionControl != null">permission_control,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="deptId != null">dept_id,</if>
|
||||
<if test="logType != null">log_type,</if>
|
||||
</trim>
|
||||
@ -90,9 +90,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="instructorLog != null">instructor_log = #{instructorLog},</if>
|
||||
<if test="permissionControl != null">permission_control = #{permissionControl},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||
<if test="logType != null">log_type = #{logType},</if>
|
||||
</trim>
|
||||
|
@ -10,13 +10,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="deduct" column="deduct" />
|
||||
<result property="courseSubject" column="course_subject" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolDeductVo">
|
||||
select id, dept_id, deduct, course_subject, create_time, create_by, update_time, update_by from drive_school_deduct
|
||||
select id, dept_id, deduct, course_subject, create_time, creator, update_time, updater from drive_school_deduct
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolDeductList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolDeduct" resultMap="DriveSchoolDeductResult">
|
||||
@ -41,9 +41,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deduct != null">deduct,</if>
|
||||
<if test="courseSubject != null">course_subject,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -63,9 +63,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deduct != null">deduct = #{deduct},</if>
|
||||
<if test="courseSubject != null">course_subject = #{courseSubject},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -11,16 +11,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="content" column="content" />
|
||||
<result property="photo" column="photo" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="type" column="type" />
|
||||
<result property="jlId" column="jlId" />
|
||||
<result property="name" column="name" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolDialVo">
|
||||
select id, dept_id, name,jlId,title, content, photo, create_time, create_by, update_time, update_by, type from drive_school_dial
|
||||
select id, dept_id, name,jlId,title, content, photo, create_time, creator, update_time, updater, type from drive_school_dial
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolDialList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolDial" resultMap="DriveSchoolDialResult">
|
||||
@ -49,9 +49,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null">content,</if>
|
||||
<if test="photo != null">photo,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="type != null">type,</if>
|
||||
<if test="jlId != null">jlId,</if>
|
||||
<if test="name != null">name,</if>
|
||||
@ -79,9 +79,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null">content = #{content},</if>
|
||||
<if test="photo != null">photo = #{photo},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="type != null">type = #{type},</if>
|
||||
<if test="jlId != null">jlId = #{jlId},</if>
|
||||
<if test="name != null">type = #{name},</if>
|
||||
|
@ -10,14 +10,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="cover" column="cover" />
|
||||
<result property="title" column="title" />
|
||||
<result property="content" column="content" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolDynamicVo">
|
||||
select id, dept_id, cover, title, content, create_by, create_time, update_by, update_time from drive_school_dynamic
|
||||
select id, dept_id, cover, title, content, creator, create_time, updater, update_time from drive_school_dynamic
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolDynamicList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolDynamic" resultMap="DriveSchoolDynamicResult">
|
||||
@ -43,9 +43,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cover != null and cover != ''">cover,</if>
|
||||
<if test="title != null and title != ''">title,</if>
|
||||
<if test="content != null and content != ''">content,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -67,9 +67,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cover != null and cover != ''">cover = #{cover},</if>
|
||||
<if test="title != null and title != ''">title = #{title},</if>
|
||||
<if test="content != null and content != ''">content = #{content},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
|
@ -21,14 +21,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="orderNumber" column="orderNumber" />
|
||||
<result property="photo" column="photo" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="status" column="status" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolExamPassVo">
|
||||
select status,id, jxId, name, phone, userId,payState,payTime, jlId, course_subject, jlName, deduct, courseId, course_price, orderNumber, photo, create_time, create_by, update_time, update_by from drive_school_exam_pass
|
||||
select status,id, jxId, name, phone, userId,payState,payTime, jlId, course_subject, jlName, deduct, courseId, course_price, orderNumber, photo, create_time, creator, update_time, updater from drive_school_exam_pass
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolExamPassList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolExamPass" resultMap="DriveSchoolExamPassResult">
|
||||
@ -76,9 +76,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="orderNumber != null and orderNumber != ''">orderNumber,</if>
|
||||
<if test="photo != null and photo != ''">photo,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="status != null">status,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -122,9 +122,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="orderNumber != null and orderNumber != ''">orderNumber = #{orderNumber},</if>
|
||||
<if test="photo != null and photo != ''">photo = #{photo},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
@ -239,9 +239,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="orderNumber != null and orderNumber != ''">orderNumber = #{orderNumber},</if>
|
||||
<if test="photo != null and photo != ''">photo = #{photo},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
</trim>
|
||||
where jlId = #{jlId}
|
||||
|
@ -11,9 +11,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="facilityNumber" column="facility_number" />
|
||||
<result property="facilityDes" column="facility_des" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="location" column="location" />
|
||||
<result property="price" column="price" />
|
||||
<result property="byinTime" column="byinTime" />
|
||||
@ -25,7 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolFacilityVo">
|
||||
select phone,price,byinTime,yearcheckTime,id, dept_id, facility_name, facility_number, facility_des, create_time, create_by, update_time, update_by, location, land_leasing_company, equipment_list_cover, custodian from drive_school_facility
|
||||
select phone,price,byinTime,yearcheckTime,id, dept_id, facility_name, facility_number, facility_des, create_time, creator, update_time, updater, location, land_leasing_company, equipment_list_cover, custodian from drive_school_facility
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolFacilityList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolFacility" resultMap="DriveSchoolFacilityResult">
|
||||
@ -55,9 +55,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="facilityNumber != null">facility_number,</if>
|
||||
<if test="facilityDes != null">facility_des,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="location != null">location,</if>
|
||||
<if test="price != null">price,</if>
|
||||
<if test="byinTime != null">byinTime,</if>
|
||||
@ -95,9 +95,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="facilityNumber != null">facility_number = #{facilityNumber},</if>
|
||||
<if test="facilityDes != null">facility_des = #{facilityDes},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="location != null">location = #{location},</if>
|
||||
<if test="price != null">price = #{price},</if>
|
||||
<if test="byinTime != null">byinTime = #{byinTime},</if>
|
||||
|
@ -10,13 +10,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="deptId" column="dept_id" />
|
||||
<result property="fileAddress" column="file_address" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolFileVo">
|
||||
select id, dept_id,file_type, file_address, create_time, create_by, update_time, update_by from drive_school_file
|
||||
select id, dept_id,file_type, file_address, create_time, creator, update_time, updater from drive_school_file
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolFileList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolFile" resultMap="DriveSchoolFileResult">
|
||||
@ -41,9 +41,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deptId != null">dept_id,</if>
|
||||
<if test="fileAddress != null and fileAddress != ''">file_address,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="fileType != null and fileType != ''">#{fileType},</if>
|
||||
@ -63,9 +63,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||
<if test="fileAddress != null and fileAddress != ''">file_address = #{fileAddress},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -18,9 +18,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="businessStartTime" column="business_start_time" />
|
||||
<result property="businessEndTime" column="business_end_time" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<resultMap type="cn.iocoder.yudao.module.jx.vo.DriveSchoolInfoVO" id="DriveSchoolInfoVOResult">
|
||||
@ -37,14 +37,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="businessStartTime" column="business_start_time" />
|
||||
<result property="businessEndTime" column="business_end_time" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="announcement" column="announcement" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolInfoVo">
|
||||
select id, dept_id, school_name,leader_name, region, phone, photo, announcement, address, lat, lgt, business_start_time, business_end_time,sort, create_time, create_by, update_time, update_by from drive_school_info
|
||||
select id, dept_id, school_name,leader_name, region, phone, photo, announcement, address, lat, lgt, business_start_time, business_end_time,sort, create_time, creator, update_time, updater from drive_school_info
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolInfoList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolInfo" resultMap="DriveSchoolInfoResult">
|
||||
@ -88,9 +88,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="businessEndTime != null">business_end_time,</if>
|
||||
<if test="sort != null">sort,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},</if>
|
||||
@ -131,9 +131,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="businessEndTime != null">business_end_time = #{businessEndTime},</if>
|
||||
<if test="sort != null">sort = #{sort},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -17,13 +17,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="money" column="money" />
|
||||
<result property="insuranceTime" column="insurance_time" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolInsuranceVo">
|
||||
select id, dept_id,user_names, user_id, car_id, user_name,car_no,company, content, money, insurance_time, create_time, create_by, update_time, update_by from drive_school_insurance
|
||||
select id, dept_id,user_names, user_id, car_id, user_name,car_no,company, content, money, insurance_time, create_time, creator, update_time, updater from drive_school_insurance
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolInsuranceList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolInsurance" resultMap="DriveSchoolInsuranceResult">
|
||||
@ -61,9 +61,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="money != null">money,</if>
|
||||
<if test="insuranceTime != null">insurance_time,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -97,9 +97,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="money != null">money = #{money},</if>
|
||||
<if test="insuranceTime != null">insurance_time = #{insuranceTime},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -10,14 +10,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="cover" column="cover" />
|
||||
<result property="title" column="title" />
|
||||
<result property="content" column="content" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolNewsVo">
|
||||
select id, dept_id, cover, title, content, create_by, create_time, update_by, update_time from drive_school_news
|
||||
select id, dept_id, cover, title, content, creator, create_time, updater, update_time from drive_school_news
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolNewsList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolNews" resultMap="DriveSchoolNewsResult">
|
||||
@ -43,9 +43,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cover != null and cover != ''">cover,</if>
|
||||
<if test="title != null and title != ''">title,</if>
|
||||
<if test="content != null and content != ''">content,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -67,9 +67,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cover != null and cover != ''">cover = #{cover},</if>
|
||||
<if test="title != null and title != ''">title = #{title},</if>
|
||||
<if test="content != null and content != ''">content = #{content},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
|
@ -10,13 +10,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="title" column="title" />
|
||||
<result property="content" column="content" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolNoticeVo">
|
||||
select id, dept_id, title, content, create_time, create_by, update_time, update_by from drive_school_notice
|
||||
select id, dept_id, title, content, create_time, creator, update_time, updater from drive_school_notice
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolNoticeList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolNotice" resultMap="DriveSchoolNoticeResult">
|
||||
@ -41,9 +41,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="title != null and title != ''">title,</if>
|
||||
<if test="content != null and content != ''">content,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -63,9 +63,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="title != null and title != ''">title = #{title},</if>
|
||||
<if test="content != null and content != ''">content = #{content},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -11,13 +11,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="userName" column="user_name" />
|
||||
<result property="phone" column="phone" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolPhoneVo">
|
||||
select id, dept_id, user_id, user_name, phone, create_time, create_by, update_time, update_by from drive_school_phone
|
||||
select id, dept_id, user_id, user_name, phone, create_time, creator, update_time, updater from drive_school_phone
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolPhoneList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolPhone" resultMap="DriveSchoolPhoneResult">
|
||||
@ -44,9 +44,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userName != null and userName != ''">user_name,</if>
|
||||
<if test="phone != null and phone != ''">phone,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -68,9 +68,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userName != null and userName != ''">user_name = #{userName},</if>
|
||||
<if test="phone != null and phone != ''">phone = #{phone},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -12,13 +12,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="content" column="content" />
|
||||
<result property="state" column="state" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolReimbursementVo">
|
||||
select id, dept_id, user_id, user_name, content, state, create_time, create_by, update_time, update_by from drive_school_reimbursement
|
||||
select id, dept_id, user_id, user_name, content, state, create_time, creator, update_time, updater from drive_school_reimbursement
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolReimbursementList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolReimbursement" resultMap="DriveSchoolReimbursementResult">
|
||||
@ -48,9 +48,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null">content,</if>
|
||||
<if test="state != null">state,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},</if>
|
||||
@ -75,9 +75,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="content != null">content = #{content},</if>
|
||||
<if test="state != null">state = #{state},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -25,13 +25,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="auditStatus" column="audit_status" />
|
||||
<result property="accountType" column="account_type" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolReservationCourseVo">
|
||||
select id, dept_id, user_id,type, user_name,drive_time,stu_sign_state,coach_sign_state,stu_signin_time, stu_signout_time,coach_signin_time,coach_signout_time,order_time, time_period, coach_id, coach_name, account_type, create_time, create_by, update_time, update_by from drive_school_reservation_course
|
||||
select id, dept_id, user_id,type, user_name,drive_time,stu_sign_state,coach_sign_state,stu_signin_time, stu_signout_time,coach_signin_time,coach_signout_time,order_time, time_period, coach_id, coach_name, account_type, create_time, creator, update_time, updater from drive_school_reservation_course
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolReservationCourseList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolReservationCourse" resultMap="DriveSchoolReservationCourseResult">
|
||||
@ -77,9 +77,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="accountType != null">account_type,</if>
|
||||
<if test="type != null">type,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},</if>
|
||||
@ -121,9 +121,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="coachName != null">coach_name = #{coachName},</if>
|
||||
<if test="accountType != null">account_type = #{accountType},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="auditStatus != null">audit_status = #{auditStatus},</if>
|
||||
<if test="refuseReason != null">refuse_reason = #{refuseReason},</if>
|
||||
</trim>
|
||||
|
@ -10,13 +10,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="deptName" column="dept_name" />
|
||||
<result property="money" column="money" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolSeparateVo">
|
||||
select id, dept_id, dept_name, money, create_time, create_by, update_time, update_by from drive_school_separate
|
||||
select id, dept_id, dept_name, money, create_time, creator, update_time, updater from drive_school_separate
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolSeparateList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolSeparate" resultMap="DriveSchoolSeparateResult">
|
||||
@ -41,9 +41,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deptName != null">dept_name,</if>
|
||||
<if test="money != null">money,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -63,9 +63,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="deptName != null">dept_name = #{deptName},</if>
|
||||
<if test="money != null">money = #{money},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -11,14 +11,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="swiperPicture" column="swiper_picture" />
|
||||
<result property="jumpUrl" column="jump_url" />
|
||||
<result property="listOrder" column="list_order" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolSwiperVo">
|
||||
select id, swiper_name, dept_id,swiper_picture, jump_url, list_order, create_by, create_time, update_by, update_time from drive_school_swiper
|
||||
select id, swiper_name, dept_id,swiper_picture, jump_url, list_order, creator, create_time, updater, update_time from drive_school_swiper
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolSwiperList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolSwiper" resultMap="DriveSchoolSwiperResult">
|
||||
@ -47,9 +47,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="swiperPicture != null">swiper_picture,</if>
|
||||
<if test="jumpUrl != null">jump_url,</if>
|
||||
<if test="listOrder != null">list_order,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
@ -74,9 +74,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="swiperPicture != null">swiper_picture = #{swiperPicture},</if>
|
||||
<if test="jumpUrl != null">jump_url = #{jumpUrl},</if>
|
||||
<if test="listOrder != null">list_order = #{listOrder},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
|
@ -11,22 +11,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="userName" column="user_name" />
|
||||
<result property="content" column="content" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="creator" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updater" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolTeachingJournalVo">
|
||||
select id, dept_id, user_id, user_name, content, create_time, create_by, update_time, update_by from drive_school_teaching_journal
|
||||
select * from drive_school_teaching_journal
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolTeachingJournalList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolTeachingJournal" resultMap="DriveSchoolTeachingJournalResult">
|
||||
<select id="selectDriveSchoolTeachingJournalList" resultMap="DriveSchoolTeachingJournalResult">
|
||||
<include refid="selectDriveSchoolTeachingJournalVo"/>
|
||||
<where>
|
||||
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
||||
<if test="userId != null "> and user_id = #{userId}</if>
|
||||
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
|
||||
<if test="content != null and content != ''"> and content = #{content}</if>
|
||||
deleted = 0
|
||||
<if test="entity.deptId != null "> and dept_id = #{entity.deptId}</if>
|
||||
<if test="entity.userId != null "> and user_id = #{entity.userId}</if>
|
||||
<if test="entity.userName != null and entity.userName != ''"> and user_name like concat('%', #{entity.userName}, '%')</if>
|
||||
<if test="entity.content != null and entity.content != ''"> and content = #{entity.content}</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
@ -44,9 +45,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userName != null">user_name,</if>
|
||||
<if test="content != null">content,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">#{deptId},</if>
|
||||
@ -68,9 +69,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="userName != null">user_name = #{userName},</if>
|
||||
<if test="content != null">content = #{content},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -11,13 +11,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="deptId" column="dept_id" />
|
||||
<result property="cover" column="cover" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolTextVo">
|
||||
select id, content, title, cover, dept_id, create_time, create_by, update_time, update_by from drive_school_text
|
||||
select id, content, title, cover, dept_id, create_time, creator, update_time, updater from drive_school_text
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolTextList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolText" resultMap="DriveSchoolTextResult">
|
||||
@ -41,9 +41,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cover != null">cover,</if>
|
||||
<if test="deptId != null">dept_id,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="content != null">#{content},</if>
|
||||
@ -65,9 +65,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cover != null">cover = #{cover},</if>
|
||||
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -14,13 +14,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="nextMaintenanceDate" column="next_maintenance_date" />
|
||||
<result property="nextMaintenanceMileage" column="next_maintenance_mileage" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectDriveSchoolUpkeepVo">
|
||||
select id, car_id, maintenance_date, maintenance_mileage, inspection_date, insurance_date, next_maintenance_date, next_maintenance_mileage, create_time, create_by, update_time, update_by from drive_school_upkeep
|
||||
select id, car_id, maintenance_date, maintenance_mileage, inspection_date, insurance_date, next_maintenance_date, next_maintenance_mileage, create_time, creator, update_time, updater from drive_school_upkeep
|
||||
</sql>
|
||||
|
||||
<select id="selectDriveSchoolUpkeepList" parameterType="cn.iocoder.yudao.module.jx.domain.DriveSchoolUpkeep" resultMap="DriveSchoolUpkeepResult">
|
||||
@ -52,9 +52,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="nextMaintenanceDate != null">next_maintenance_date,</if>
|
||||
<if test="nextMaintenanceMileage != null">next_maintenance_mileage,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="carId != null">#{carId},</if>
|
||||
@ -82,9 +82,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="nextMaintenanceDate != null">next_maintenance_date = #{nextMaintenanceDate},</if>
|
||||
<if test="nextMaintenanceMileage != null">next_maintenance_mileage = #{nextMaintenanceMileage},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
@ -8,9 +8,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="id" column="id" />
|
||||
<result property="deptId" column="dept_id" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createBy" column="creator" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateBy" column="updater" />
|
||||
<result property="businessType" column="business_type" />
|
||||
<result property="description" column="description" />
|
||||
<result property="licenseNumber" column="license_number" />
|
||||
@ -23,7 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectSopeNessVo">
|
||||
select id, dept_id, create_time, create_by, update_time, update_by, business_type, description, license_number, license_issue_date, license_expiry_date, price, duration, notes, license_cover from sope_ness
|
||||
select id, dept_id, create_time, creator, update_time, updater, business_type, description, license_number, license_issue_date, license_expiry_date, price, duration, notes, license_cover from sope_ness
|
||||
</sql>
|
||||
|
||||
<select id="selectSopeNessList" parameterType="cn.iocoder.yudao.module.jx.domain.SopeNess" resultMap="SopeNessResult">
|
||||
@ -52,9 +52,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="deptId != null">dept_id,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createBy != null">creator,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateBy != null">updater,</if>
|
||||
<if test="businessType != null and businessType != ''">business_type,</if>
|
||||
<if test="description != null">description,</if>
|
||||
<if test="licenseNumber != null">license_number,</if>
|
||||
@ -88,9 +88,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="deptId != null">dept_id = #{deptId},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createBy != null">creator = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateBy != null">updater = #{updateBy},</if>
|
||||
<if test="businessType != null and businessType != ''">business_type = #{businessType},</if>
|
||||
<if test="description != null">description = #{description},</if>
|
||||
<if test="licenseNumber != null">license_number = #{licenseNumber},</if>
|
||||
|
Loading…
Reference in New Issue
Block a user