Explorar o código

update 学生增加服务指标,运营指标标记

周箭河 %!s(int64=5) %!d(string=hai) anos
pai
achega
0d3a189592

+ 21 - 1
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/Student.java

@@ -12,6 +12,10 @@ public class Student {
 	
 	/**  */
 	private String subjectIdList;
+
+	private Integer serviceTag;
+
+	private Integer operatingTag;
 	
 	/**  */
 	private java.util.Date createTime;
@@ -50,7 +54,23 @@ public class Student {
 	public java.util.Date getUpdateTime(){
 		return this.updateTime;
 	}
-			
+
+
+	public Integer getServiceTag() {
+		return serviceTag;
+	}
+
+	public void setServiceTag(Integer serviceTag) {
+		this.serviceTag = serviceTag;
+	}
+
+	public Integer getOperatingTag() {
+		return operatingTag;
+	}
+
+	public void setOperatingTag(Integer operatingTag) {
+		this.operatingTag = operatingTag;
+	}
 	@Override
 	public String toString() {
 		return ToStringBuilder.reflectionToString(this);

+ 2 - 0
mec-biz/src/main/resources/config/mybatis/StudentMapper.xml

@@ -9,6 +9,8 @@
 	<resultMap type="com.ym.mec.biz.dal.entity.Student" id="Student">
 		<result column="user_id_" property="userId" />
 		<result column="subject_id_list_" property="subjectIdList" />
+		<result column="service_tag_" property="serviceTag" />
+		<result column="operating_tag_" property="operatingTag" />
 		<result column="create_time_" property="createTime" />
 		<result column="update_time_" property="updateTime" />
 	</resultMap>