|
@@ -0,0 +1,114 @@
|
|
|
+package com.ym.mec.web.dal.entity;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 对应数据库表(course_type_fee_detail):
|
|
|
+ */
|
|
|
+public class CourseTypeFeeDetail {
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /** course_type表的id */
|
|
|
+ private Integer courseTypeId;
|
|
|
+
|
|
|
+ /** course_fee_type表的id */
|
|
|
+ private Integer courseFeeTypeId;
|
|
|
+
|
|
|
+ /** 课时(单位:分钟) */
|
|
|
+ private Integer classHour;
|
|
|
+
|
|
|
+ /** 单价 */
|
|
|
+ private long unitPrice;
|
|
|
+
|
|
|
+ /** 折扣单价 */
|
|
|
+ private long discountUnitPrice;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private String delFlag;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private java.util.Date createTime;
|
|
|
+
|
|
|
+ /** */
|
|
|
+ private java.util.Date updateTime;
|
|
|
+
|
|
|
+ public void setId(Integer id){
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getId(){
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseTypeId(Integer courseTypeId){
|
|
|
+ this.courseTypeId = courseTypeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCourseTypeId(){
|
|
|
+ return this.courseTypeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseFeeTypeId(Integer courseFeeTypeId){
|
|
|
+ this.courseFeeTypeId = courseFeeTypeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCourseFeeTypeId(){
|
|
|
+ return this.courseFeeTypeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassHour(Integer classHour){
|
|
|
+ this.classHour = classHour;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getClassHour(){
|
|
|
+ return this.classHour;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnitPrice(long unitPrice){
|
|
|
+ this.unitPrice = unitPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getUnitPrice(){
|
|
|
+ return this.unitPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDiscountUnitPrice(long discountUnitPrice){
|
|
|
+ this.discountUnitPrice = discountUnitPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getDiscountUnitPrice(){
|
|
|
+ return this.discountUnitPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDelFlag(String delFlag){
|
|
|
+ this.delFlag = delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDelFlag(){
|
|
|
+ return this.delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(java.util.Date createTime){
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCreateTime(){
|
|
|
+ return this.createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(java.util.Date updateTime){
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getUpdateTime(){
|
|
|
+ return this.updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return ToStringBuilder.reflectionToString(this);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|