Merge branch 'master' of e.coding.net:tsteam/btsaqscksfwpt/system-examination-signup

This commit is contained in:
wans 2021-05-04 14:25:56 +08:00
commit c267a60482
6 changed files with 211 additions and 9 deletions

View File

@ -1,5 +1,7 @@
package cn.com.tenlion.pojo.bos.examapply; package cn.com.tenlion.pojo.bos.examapply;
import io.swagger.annotations.ApiModelProperty;
/** /**
* *
* @ClassName: ExamApplyBO * @ClassName: ExamApplyBO
@ -22,6 +24,10 @@ public class ExamApplyBO {
private String paymentVoucher; private String paymentVoucher;
private String paymentVoucherNum; private String paymentVoucherNum;
private String examApplyNum; private String examApplyNum;
private String plan;
private String planName;
private Integer planCount;
private String examMechanism;
public String getExamApplyId() { public String getExamApplyId() {
return examApplyId; return examApplyId;
@ -118,4 +124,36 @@ public class ExamApplyBO {
public void setExamApplyNum(String examApplyNum) { public void setExamApplyNum(String examApplyNum) {
this.examApplyNum = examApplyNum; this.examApplyNum = examApplyNum;
} }
public String getPlan() {
return plan;
}
public void setPlan(String plan) {
this.plan = plan;
}
public String getPlanName() {
return planName;
}
public void setPlanName(String planName) {
this.planName = planName;
}
public Integer getPlanCount() {
return planCount;
}
public void setPlanCount(Integer planCount) {
this.planCount = planCount;
}
public String getExamMechanism() {
return examMechanism;
}
public void setExamMechanism(String examMechanism) {
this.examMechanism = examMechanism;
}
} }

View File

@ -38,6 +38,14 @@ public class ExamApplyDTO {
private String paymentVoucherNum; private String paymentVoucherNum;
@ApiModelProperty(name = "examApplyNum", value = "考试申请编号") @ApiModelProperty(name = "examApplyNum", value = "考试申请编号")
private String examApplyNum; private String examApplyNum;
@ApiModelProperty(name = "plan", value = "培训计划")
private String plan;
@ApiModelProperty(name = "planName", value = "计划名称")
private String planName;
@ApiModelProperty(name = "planCount", value = "计划人数")
private Integer planCount;
@ApiModelProperty(name = "examMechanism", value = "考试机构")
private String examMechanism;
public String getExamApplyId() { public String getExamApplyId() {
return examApplyId; return examApplyId;
@ -134,4 +142,36 @@ public class ExamApplyDTO {
public void setExamApplyNum(String examApplyNum) { public void setExamApplyNum(String examApplyNum) {
this.examApplyNum = examApplyNum; this.examApplyNum = examApplyNum;
} }
public String getPlan() {
return plan;
}
public void setPlan(String plan) {
this.plan = plan;
}
public String getPlanName() {
return planName;
}
public void setPlanName(String planName) {
this.planName = planName;
}
public Integer getPlanCount() {
return planCount;
}
public void setPlanCount(Integer planCount) {
this.planCount = planCount;
}
public String getExamMechanism() {
return examMechanism;
}
public void setExamMechanism(String examMechanism) {
this.examMechanism = examMechanism;
}
} }

View File

@ -22,6 +22,10 @@ public class ExamApplyPO {
private String paymentVoucher; private String paymentVoucher;
private String paymentVoucherNum; private String paymentVoucherNum;
private String examApplyNum; private String examApplyNum;
private String plan;
private String planName;
private Integer planCount;
private String examMechanism;
public String getExamApplyId() { public String getExamApplyId() {
return examApplyId; return examApplyId;
@ -118,4 +122,36 @@ public class ExamApplyPO {
public void setExamApplyNum(String examApplyNum) { public void setExamApplyNum(String examApplyNum) {
this.examApplyNum = examApplyNum; this.examApplyNum = examApplyNum;
} }
public String getPlan() {
return plan;
}
public void setPlan(String plan) {
this.plan = plan;
}
public String getPlanName() {
return planName;
}
public void setPlanName(String planName) {
this.planName = planName;
}
public Integer getPlanCount() {
return planCount;
}
public void setPlanCount(Integer planCount) {
this.planCount = planCount;
}
public String getExamMechanism() {
return examMechanism;
}
public void setExamMechanism(String examMechanism) {
this.examMechanism = examMechanism;
}
} }

View File

@ -40,6 +40,14 @@ public class ExamApplyVO {
private String paymentVoucherNum; private String paymentVoucherNum;
@ApiModelProperty(name = "examApplyNum", value = "考试申请编号") @ApiModelProperty(name = "examApplyNum", value = "考试申请编号")
private String examApplyNum; private String examApplyNum;
@ApiModelProperty(name = "plan", value = "培训计划")
private String plan;
@ApiModelProperty(name = "planName", value = "计划名称")
private String planName;
@ApiModelProperty(name = "planCount", value = "计划人数")
private Integer planCount;
@ApiModelProperty(name = "examMechanism", value = "考试机构")
private String examMechanism;
public String getExamApplyId() { public String getExamApplyId() {
return examApplyId; return examApplyId;
@ -136,4 +144,36 @@ public class ExamApplyVO {
public void setExamApplyNum(String examApplyNum) { public void setExamApplyNum(String examApplyNum) {
this.examApplyNum = examApplyNum; this.examApplyNum = examApplyNum;
} }
public String getPlan() {
return plan;
}
public void setPlan(String plan) {
this.plan = plan;
}
public String getPlanName() {
return planName;
}
public void setPlanName(String planName) {
this.planName = planName;
}
public Integer getPlanCount() {
return planCount;
}
public void setPlanCount(Integer planCount) {
this.planCount = planCount;
}
public String getExamMechanism() {
return examMechanism;
}
public void setExamMechanism(String examMechanism) {
this.examMechanism = examMechanism;
}
} }

View File

@ -15,6 +15,10 @@
<result column="payment_voucher" property="paymentVoucher"/> <result column="payment_voucher" property="paymentVoucher"/>
<result column="payment_voucher_num" property="paymentVoucherNum"/> <result column="payment_voucher_num" property="paymentVoucherNum"/>
<result column="exam_apply_num" property="examApplyNum"/> <result column="exam_apply_num" property="examApplyNum"/>
<result column="plan" property="plan"/>
<result column="plan_name" property="planName"/>
<result column="plan_count" property="planCount"/>
<result column="exam_mechanism" property="examMechanism"/>
</resultMap> </resultMap>
<resultMap id="examApplyBO" type="cn.com.tenlion.pojo.bos.examapply.ExamApplyBO"> <resultMap id="examApplyBO" type="cn.com.tenlion.pojo.bos.examapply.ExamApplyBO">
@ -58,6 +62,10 @@
theory_exam_end_time, theory_exam_end_time,
payment_voucher, payment_voucher,
payment_voucher_num, payment_voucher_num,
plan,
plan_name,
plan_count,
exam_mechanism,
gmt_create, gmt_create,
creator, creator,
gmt_modified, gmt_modified,
@ -72,6 +80,10 @@
#{theoryExamEndTime}, #{theoryExamEndTime},
#{paymentVoucher}, #{paymentVoucher},
#{paymentVoucherNum}, #{paymentVoucherNum},
#{plan},
#{planName},
#{planCount},
#{examMechanism},
#{gmtCreate}, #{gmtCreate},
#{creator}, #{creator},
#{gmtModified}, #{gmtModified},
@ -143,6 +155,18 @@
</if> </if>
<if test="examApplyNum != null and examApplyNum != ''"> <if test="examApplyNum != null and examApplyNum != ''">
exam_apply_num = #{examApplyNum}, exam_apply_num = #{examApplyNum},
</if>
<if test="plan != null and plan != ''">
plan = #{plan},
</if>
<if test="planName != null and planName != ''">
plan_name = #{planName},
</if>
<if test="planCount != null and planCount != ''">
plan_count = #{planCount},
</if>
<if test="examMechanism != null and examMechanism != ''">
exam_mechanism = #{examMechanism},
</if> </if>
gmt_modified = #{gmtModified}, gmt_modified = #{gmtModified},
modifier = #{modifier}, modifier = #{modifier},
@ -162,7 +186,11 @@
t1.payment_voucher, t1.payment_voucher,
t1.payment_voucher_num, t1.payment_voucher_num,
t1.exam_apply_num, t1.exam_apply_num,
t1.exam_apply_id t1.exam_apply_id,
t1.plan,
t1.plan_name,
t1.plan_count,
t1.exam_mechanism
FROM FROM
management_exam_apply t1 management_exam_apply t1
WHERE WHERE
@ -187,7 +215,11 @@
t1.practice_exam_end_time, t1.practice_exam_end_time,
t1.payment_voucher, t1.payment_voucher,
t1.payment_voucher_num, t1.payment_voucher_num,
t1.exam_apply_num t1.exam_apply_num,
t1.plan,
t1.plan_name,
t1.plan_count,
t1.exam_mechanism
FROM FROM
management_exam_apply t1 management_exam_apply t1
WHERE WHERE
@ -212,7 +244,11 @@
t1.practice_exam_end_time, t1.practice_exam_end_time,
t1.payment_voucher, t1.payment_voucher,
t1.payment_voucher_num, t1.payment_voucher_num,
t1.exam_apply_num t1.exam_apply_num,
t1.plan,
t1.plan_name,
t1.plan_count,
t1.exam_mechanism
FROM FROM
management_exam_apply t1 management_exam_apply t1
WHERE WHERE
@ -237,7 +273,11 @@
t1.practice_exam_end_time, t1.practice_exam_end_time,
t1.payment_voucher, t1.payment_voucher,
t1.payment_voucher_num, t1.payment_voucher_num,
t1.exam_apply_num, t1.exam_apply_num,,
t1.plan,
t1.plan_name,
t1.plan_count,
t1.exam_mechanism,
1 1
FROM FROM
management_exam_apply t1 management_exam_apply t1
@ -280,7 +320,11 @@
t1.practice_exam_end_time, t1.practice_exam_end_time,
t1.payment_voucher, t1.payment_voucher,
t1.payment_voucher_num, t1.payment_voucher_num,
t1.exam_apply_num t1.exam_apply_num,
t1.plan,
t1.plan_name,
t1.plan_count,
t1.exam_mechanism
FROM FROM
management_exam_apply t1 management_exam_apply t1
WHERE WHERE
@ -322,7 +366,11 @@
t1.practice_exam_end_time, t1.practice_exam_end_time,
t1.payment_voucher, t1.payment_voucher,
t1.payment_voucher_num, t1.payment_voucher_num,
t1.exam_apply_num t1.exam_apply_num,
t1.plan,
t1.plan_name,
t1.plan_count,
t1.exam_mechanism
FROM FROM
management_exam_apply t1 management_exam_apply t1
WHERE WHERE

View File

@ -28,7 +28,7 @@
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label">培训计划</label> <label class="layui-form-label">培训计划</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" id="trainingPlan" name="trainingPlan" class="layui-input" value="培训计划" placeholder="请输入培训计划" maxlength="255" readonly> <input type="text" id="plan" name="plan" class="layui-input" value="培训计划" placeholder="请输入培训计划" maxlength="255" readonly>
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
@ -40,13 +40,13 @@
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label">计划人数</label> <label class="layui-form-label">计划人数</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="number" id="planUserCount" name="planUserCount" class="layui-input" value="40" placeholder="请输入计划人数" maxlength="255" readonly> <input type="number" id="planCount" name="planCount" class="layui-input" value="40" placeholder="请输入计划人数" maxlength="255" readonly>
</div> </div>
</div> </div>
<div class="layui-form-item"> <div class="layui-form-item">
<label class="layui-form-label">考试机构</label> <label class="layui-form-label">考试机构</label>
<div class="layui-input-block"> <div class="layui-input-block">
<input type="text" id="examinationInstitutions" name="examinationInstitutions" class="layui-input" value="考试机构" placeholder="请输入考试机构" maxlength="255" readonly> <input type="text" id="examMechanism" name="examMechanism" class="layui-input" value="考试机构" placeholder="请输入考试机构" maxlength="255" readonly>
</div> </div>
</div> </div>
</form> </form>