考试申请对接。
This commit is contained in:
parent
d9d45b69f9
commit
09284bd69e
@ -1,5 +1,7 @@
|
||||
package cn.com.tenlion.pojo.bos.examapply;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
*
|
||||
* @ClassName: ExamApplyBO
|
||||
@ -22,6 +24,10 @@ public class ExamApplyBO {
|
||||
private String paymentVoucher;
|
||||
private String paymentVoucherNum;
|
||||
private String examApplyNum;
|
||||
private String plan;
|
||||
private String planName;
|
||||
private Integer planCount;
|
||||
private String examMechanism;
|
||||
|
||||
public String getExamApplyId() {
|
||||
return examApplyId;
|
||||
@ -118,4 +124,36 @@ public class ExamApplyBO {
|
||||
public void setExamApplyNum(String 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;
|
||||
}
|
||||
}
|
||||
|
@ -38,6 +38,14 @@ public class ExamApplyDTO {
|
||||
private String paymentVoucherNum;
|
||||
@ApiModelProperty(name = "examApplyNum", value = "考试申请编号")
|
||||
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() {
|
||||
return examApplyId;
|
||||
@ -134,4 +142,36 @@ public class ExamApplyDTO {
|
||||
public void setExamApplyNum(String 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;
|
||||
}
|
||||
}
|
||||
|
@ -22,6 +22,10 @@ public class ExamApplyPO {
|
||||
private String paymentVoucher;
|
||||
private String paymentVoucherNum;
|
||||
private String examApplyNum;
|
||||
private String plan;
|
||||
private String planName;
|
||||
private Integer planCount;
|
||||
private String examMechanism;
|
||||
|
||||
public String getExamApplyId() {
|
||||
return examApplyId;
|
||||
@ -118,4 +122,36 @@ public class ExamApplyPO {
|
||||
public void setExamApplyNum(String 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;
|
||||
}
|
||||
}
|
||||
|
@ -40,6 +40,14 @@ public class ExamApplyVO {
|
||||
private String paymentVoucherNum;
|
||||
@ApiModelProperty(name = "examApplyNum", value = "考试申请编号")
|
||||
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() {
|
||||
return examApplyId;
|
||||
@ -136,4 +144,36 @@ public class ExamApplyVO {
|
||||
public void setExamApplyNum(String 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;
|
||||
}
|
||||
}
|
||||
|
@ -15,6 +15,10 @@
|
||||
<result column="payment_voucher" property="paymentVoucher"/>
|
||||
<result column="payment_voucher_num" property="paymentVoucherNum"/>
|
||||
<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 id="examApplyBO" type="cn.com.tenlion.pojo.bos.examapply.ExamApplyBO">
|
||||
@ -58,6 +62,10 @@
|
||||
theory_exam_end_time,
|
||||
payment_voucher,
|
||||
payment_voucher_num,
|
||||
plan,
|
||||
plan_name,
|
||||
plan_count,
|
||||
exam_mechanism,
|
||||
gmt_create,
|
||||
creator,
|
||||
gmt_modified,
|
||||
@ -72,6 +80,10 @@
|
||||
#{theoryExamEndTime},
|
||||
#{paymentVoucher},
|
||||
#{paymentVoucherNum},
|
||||
#{plan},
|
||||
#{planName},
|
||||
#{planCount},
|
||||
#{examMechanism},
|
||||
#{gmtCreate},
|
||||
#{creator},
|
||||
#{gmtModified},
|
||||
@ -143,6 +155,18 @@
|
||||
</if>
|
||||
<if test="examApplyNum != null and 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>
|
||||
gmt_modified = #{gmtModified},
|
||||
modifier = #{modifier},
|
||||
@ -162,7 +186,11 @@
|
||||
t1.payment_voucher,
|
||||
t1.payment_voucher_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
|
||||
management_exam_apply t1
|
||||
WHERE
|
||||
@ -187,7 +215,11 @@
|
||||
t1.practice_exam_end_time,
|
||||
t1.payment_voucher,
|
||||
t1.payment_voucher_num,
|
||||
t1.exam_apply_num
|
||||
t1.exam_apply_num,
|
||||
t1.plan,
|
||||
t1.plan_name,
|
||||
t1.plan_count,
|
||||
t1.exam_mechanism
|
||||
FROM
|
||||
management_exam_apply t1
|
||||
WHERE
|
||||
@ -212,7 +244,11 @@
|
||||
t1.practice_exam_end_time,
|
||||
t1.payment_voucher,
|
||||
t1.payment_voucher_num,
|
||||
t1.exam_apply_num
|
||||
t1.exam_apply_num,
|
||||
t1.plan,
|
||||
t1.plan_name,
|
||||
t1.plan_count,
|
||||
t1.exam_mechanism
|
||||
FROM
|
||||
management_exam_apply t1
|
||||
WHERE
|
||||
@ -237,7 +273,11 @@
|
||||
t1.practice_exam_end_time,
|
||||
t1.payment_voucher,
|
||||
t1.payment_voucher_num,
|
||||
t1.exam_apply_num,
|
||||
t1.exam_apply_num,,
|
||||
t1.plan,
|
||||
t1.plan_name,
|
||||
t1.plan_count,
|
||||
t1.exam_mechanism,
|
||||
1
|
||||
FROM
|
||||
management_exam_apply t1
|
||||
@ -280,7 +320,11 @@
|
||||
t1.practice_exam_end_time,
|
||||
t1.payment_voucher,
|
||||
t1.payment_voucher_num,
|
||||
t1.exam_apply_num
|
||||
t1.exam_apply_num,
|
||||
t1.plan,
|
||||
t1.plan_name,
|
||||
t1.plan_count,
|
||||
t1.exam_mechanism
|
||||
FROM
|
||||
management_exam_apply t1
|
||||
WHERE
|
||||
@ -322,7 +366,11 @@
|
||||
t1.practice_exam_end_time,
|
||||
t1.payment_voucher,
|
||||
t1.payment_voucher_num,
|
||||
t1.exam_apply_num
|
||||
t1.exam_apply_num,
|
||||
t1.plan,
|
||||
t1.plan_name,
|
||||
t1.plan_count,
|
||||
t1.exam_mechanism
|
||||
FROM
|
||||
management_exam_apply t1
|
||||
WHERE
|
||||
|
@ -28,7 +28,7 @@
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">培训计划</label>
|
||||
<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 class="layui-form-item">
|
||||
@ -40,13 +40,13 @@
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">计划人数</label>
|
||||
<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 class="layui-form-item">
|
||||
<label class="layui-form-label">考试机构</label>
|
||||
<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>
|
||||
</form>
|
||||
|
Loading…
Reference in New Issue
Block a user