diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/AdminDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/AdminDO.java deleted file mode 100644 index fabb438d218f3ebda0dafe103891ecc2b4645f31..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/AdminDO.java +++ /dev/null @@ -1,60 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; -import java.util.Date; - -/** - * Created by shenhongxi on 2015/4/14. - */ -public class AdminDO implements Serializable { - - private Integer id; - - private String name; - - private String password; - - private Date created; - - private Date modified; - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - 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 String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/ArticleDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/ArticleDO.java deleted file mode 100644 index 13e2783723845c0244c9a4a5154f78847857cabf..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/ArticleDO.java +++ /dev/null @@ -1,98 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; -import java.util.Date; - -/** - * Created by duanxiangchao on 2015/6/26. - */ -public class ArticleDO implements Serializable { - - private Integer id; - //主题 - private String title; - //摘要 - private String summary; - //内容 - private String content; - //图片路径 - private String image; - //状态 0无效 1有效 - private int status; - //文章类型 - private int type; - private Date created; - private Date modified; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getSummary() { - return summary; - } - - public void setSummary(String summary) { - this.summary = summary; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getImage() { - return image; - } - - public void setImage(String image) { - this.image = image; - } - - public int getStatus() { - return status; - } - - public void setStatus(int status) { - this.status = status; - } - - public int getType() { - return type; - } - - public void setType(int type) { - this.type = type; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/BankDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/BankDO.java deleted file mode 100644 index 61b450e1d4fd9f6a9d66519d38bb944310e2546c..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/BankDO.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; - -/** - * Created by shenhongxi on 15/4/24. - */ -public class BankDO implements Serializable { - private Integer id; - - private String name; - - private String code; - - 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 String getCode() { - return code; - } - - public void setCode(String code) { - this.code = code; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/BiddingDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/BiddingDO.java deleted file mode 100644 index bfd76f6ec42b01d3298b9ffe24f5c13ca79ced94..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/BiddingDO.java +++ /dev/null @@ -1,339 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; -import java.util.Date; - -/** - * Created by cuichengrui on 2015/4/24 - */ -public class BiddingDO implements Serializable { - - //主键 - private Integer id; - - //学生id - private int studentId; - - //学生姓名 - private String studentName; - - //学生手机号 - private String studentPhone; - - //机构id - private int organizationId; - - //机构名称 - private String organizationName; - - //咨询老师 - private String teacher; - - //课程id - private int courseId; - - //课程名称 - private String courseName; - - //已付金额 - private Double paid; - - //借款金额 - private Double required; - - //已募集到的金额 - private Double obtained; - - //已还的金额 - private Double repaid; - - private Double process;//进度 - - //借款期限 - private int monthLimit; - - private double rate;//利率 - - //基本服务费 - private Double feeRate ; - //宽恕期外服务费 - private Double monthRate ; - //宽恕期内服务费 - private Double graceRate; - - //仅还利息期限 - private int gracePeriod; - - //预计结课日期 - private String courseEndDate; - - //学生已签署的借款合同上传 - private String contractImage; - - private Double interest;//预期总收益 - - //投标的状态 - private int status; - - private Double bailPercentage; - - private int effective;//是否有效 - - private Date invalidDate;//流标日期 - - private Date repayBeginDate;//还款开始时间 - - private Date created; - - private Date modified; - - private int version; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public int getStudentId() { - return studentId; - } - - public void setStudentId(int studentId) { - this.studentId = studentId; - } - - public String getStudentName() { - return studentName; - } - - public void setStudentName(String studentName) { - this.studentName = studentName; - } - - public String getStudentPhone() { - return studentPhone; - } - - public void setStudentPhone(String studentPhone) { - this.studentPhone = studentPhone; - } - - public int getOrganizationId() { - return organizationId; - } - - public void setOrganizationId(int organizationId) { - this.organizationId = organizationId; - } - - public String getOrganizationName() { - return organizationName; - } - - public void setOrganizationName(String organizationName) { - this.organizationName = organizationName; - } - - public String getTeacher() { - return teacher; - } - - public void setTeacher(String teacher) { - this.teacher = teacher; - } - - public int getCourseId() { - return courseId; - } - - public void setCourseId(int courseId) { - this.courseId = courseId; - } - - public String getCourseName() { - return courseName; - } - - public void setCourseName(String courseName) { - this.courseName = courseName; - } - - public Double getPaid() { - return paid; - } - - public void setPaid(Double paid) { - this.paid = paid; - } - - public int getMonthLimit() { - return monthLimit; - } - - public void setMonthLimit(int monthLimit) { - this.monthLimit = monthLimit; - } - - public int getGracePeriod() { - return gracePeriod; - } - - public void setGracePeriod(int gracePeriod) { - this.gracePeriod = gracePeriod; - } - - public String getCourseEndDate() { - return courseEndDate; - } - - public void setCourseEndDate(String courseEndDate) { - this.courseEndDate = courseEndDate; - } - - public int getStatus() { - return status; - } - - public void setStatus(int status) { - this.status = status; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public Double getRequired() { - return required; - } - - public void setRequired(Double required) { - this.required = required; - } - - public Double getObtained() { - return obtained; - } - - public void setObtained(Double obtained) { - this.obtained = obtained; - } - - public Double getRepaid() { - return repaid; - } - - public void setRepaid(Double repaid) { - this.repaid = repaid; - } - - public double getRate() { - return rate; - } - - public void setRate(double rate) { - this.rate = rate; - } - - public int getEffective() { - return effective; - } - - public void setEffective(int effective) { - this.effective = effective; - } - - public int getVersion() { - return version; - } - - public void setVersion(int version) { - this.version = version; - } - - public String getContractImage() { - return contractImage; - } - - public void setContractImage(String contractImage) { - this.contractImage = contractImage; - } - - public Double getProcess() { - return process; - } - - public void setProcess(Double process) { - this.process = process; - } - - public Double getInterest() { - return interest; - } - - public void setInterest(Double interest) { - this.interest = interest; - } - - public Date getInvalidDate() { - return invalidDate; - } - - public void setInvalidDate(Date invalidDate) { - this.invalidDate = invalidDate; - } - - public Date getRepayBeginDate() { - return repayBeginDate; - } - - public void setRepayBeginDate(Date repayBeginDate) { - this.repayBeginDate = repayBeginDate; - } - - public Double getBailPercentage() { - return bailPercentage; - } - - public void setBailPercentage(Double bailPercentage) { - this.bailPercentage = bailPercentage; - } - - public Double getFeeRate() { - return feeRate; - } - - public void setFeeRate(Double feeRate) { - this.feeRate = feeRate; - } - - public Double getMonthRate() { - return monthRate; - } - - public void setMonthRate(Double monthRate) { - this.monthRate = monthRate; - } - - public Double getGraceRate() { - return graceRate; - } - - public void setGraceRate(Double graceRate) { - this.graceRate = graceRate; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/InterestRateDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/InterestRateDO.java deleted file mode 100644 index ca9244dff1680640dc66b94fdc78a8e8d99325df..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/InterestRateDO.java +++ /dev/null @@ -1,81 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; -import java.util.Date; - -/** - * Created by chenguang on 2015/4/22 0022. - * 利率信息 - */ -public class InterestRateDO implements Serializable { - - private Integer id; - - private int monthLimit; //借款期限 - - private Double rate; //年利率 - - private String description; //操作留言 - - private Date created; - - private Date modified; - - private int effective; //利率是否生效状态 - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public int getMonthLimit() { - return monthLimit; - } - - public void setMonthLimit(int monthLimit) { - this.monthLimit = monthLimit; - } - - public Double getRate() { - return rate; - } - - public void setRate(Double rate) { - this.rate = rate; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public int getEffective() { - return effective; - } - - public void setEffective(int effective) { - this.effective = effective; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderAccountDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderAccountDO.java deleted file mode 100644 index ecf83b533bdeeb5828b497d275ad155e7e4255f6..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderAccountDO.java +++ /dev/null @@ -1,150 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.util.Date; - -/** - * Created by chenguang on 2015/5/14 0014. - */ -public class LenderAccountDO { - - private Integer id; - - private Integer lenderId; - - private Double balance; //余额 - - private Double balanceFrozen; //冻结金额 - - private Double principal;//持有本金 - - private Double totalInterest;//累计收益和预期收益总和 - - private Double currentInterest;//累计收益 - - private Double pendingEarn; //待收益 - - private String bankCardId; //银行卡号 - - private String bankName; - - private String dealPassword; - - private int version; - - private Date created; - - private Date modified; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public Integer getLenderId() { - return lenderId; - } - - public void setLenderId(Integer lenderId) { - this.lenderId = lenderId; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public String getBankCardId() { - return bankCardId; - } - - public void setBankCardId(String bankCardId) { - this.bankCardId = bankCardId; - } - - public String getBankName() { - return bankName; - } - - public void setBankName(String bankName) { - this.bankName = bankName; - } - - public Double getPrincipal() { - return principal; - } - - public void setPrincipal(Double principal) { - this.principal = principal; - } - - public Double getTotalInterest() { - return totalInterest; - } - - public void setTotalInterest(Double totalInterest) { - this.totalInterest = totalInterest; - } - - public Double getCurrentInterest() { - return currentInterest; - } - - public void setCurrentInterest(Double currentInterest) { - this.currentInterest = currentInterest; - } - - public Double getPendingEarn() { - return pendingEarn; - } - - public void setPendingEarn(Double pendingEarn) { - this.pendingEarn = pendingEarn; - } - - public Double getBalance() { - return balance; - } - - public void setBalance(Double balance) { - this.balance = balance; - } - - public Double getBalanceFrozen() { - return balanceFrozen; - } - - public void setBalanceFrozen(Double balanceFrozen) { - this.balanceFrozen = balanceFrozen; - } - - public int getVersion() { - return version; - } - - public void setVersion(int version) { - this.version = version; - } - - public String getDealPassword() { - return dealPassword; - } - - public void setDealPassword(String dealPassword) { - this.dealPassword = dealPassword; - } - -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderAccountFlowDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderAccountFlowDO.java deleted file mode 100644 index 525796194fd30bc05e60e373c663dbafcabf3754..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderAccountFlowDO.java +++ /dev/null @@ -1,341 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - - -import java.util.Date; - -/** - * Created by jenny on 5/15/15. - */ -public class LenderAccountFlowDO { - - private Integer id; - - private int lenderId; - //交易充值id - private String orderId; - //交易类型 - private int type; - //交易金额 - private Double amount; - //交易前余额 - private Double balanceBefore; - //交易后余额 - private Double balanceAfter; - //交易前冻结资金余额 - private Double frozenBefore; - //交易后冻结资金余额 - private Double frozenAfter; - - private Double frozen; - //充值金额 - private Double recharge; - //提现金额 - private Double withdraw; - //充值手续费 - private Double fee; - //备注 - private String description; - //标的id - private int biddingId; - //还款单号 - private int billStageId; - //检查次数 - private int checkTimes; - - private int status; - - private String courseName ;//课程名称 - - private String studentName;//学生姓名 - - private Integer currentStage; //还款期数 - - private Integer totalStage; //还款总期数 - - private Double interest; //利息 - - private Double rate;//利率 - - private Double principal; //本金 - - private Date deadline;//截止日期 - - private Date repaymentDate;//还款日期 - - private String lenderRealName; - - private String lenderName; - - private String phone; - - private Date created; - - private Date modified; - - private String errorMessage; //错误信息JSON - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public int getLenderId() { - return lenderId; - } - - public void setLenderId(int lenderId) { - this.lenderId = lenderId; - } - - public String getOrderId() { - return orderId; - } - - public void setOrderId(String orderId) { - this.orderId = orderId; - } - - public int getType() { - return type; - } - - public void setType(int type) { - this.type = type; - } - - public Double getAmount() { - return amount; - } - - public void setAmount(Double amount) { - this.amount = amount; - } - - public Double getBalanceBefore() { - return balanceBefore; - } - - public void setBalanceBefore(Double balanceBefore) { - this.balanceBefore = balanceBefore; - } - - public Double getBalanceAfter() { - return balanceAfter; - } - - public void setBalanceAfter(Double balanceAfter) { - this.balanceAfter = balanceAfter; - } - - public Double getFee() { - return fee; - } - - public void setFee(Double fee) { - this.fee = fee; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public int getBiddingId() { - return biddingId; - } - - public void setBiddingId(int biddingId) { - this.biddingId = biddingId; - } - - public int getBillStageId() { - return billStageId; - } - - public void setBillStageId(int billStageId) { - this.billStageId = billStageId; - } - - public int getCheckTimes() { - return checkTimes; - } - - public void setCheckTimes(int checkTimes) { - this.checkTimes = checkTimes; - } - - public int getStatus() { - return status; - } - - public void setStatus(int status) { - this.status = status; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public Double getFrozenBefore() { - return frozenBefore; - } - - public void setFrozenBefore(Double frozenBefore) { - this.frozenBefore = frozenBefore; - } - - public Double getFrozenAfter() { - return frozenAfter; - } - - public void setFrozenAfter(Double frozenAfter) { - this.frozenAfter = frozenAfter; - } - - public String getCourseName() { - return courseName; - } - - public void setCourseName(String courseName) { - this.courseName = courseName; - } - - public String getStudentName() { - return studentName; - } - - public void setStudentName(String studentName) { - this.studentName = studentName; - } - - public Integer getCurrentStage() { - return currentStage; - } - - public void setCurrentStage(Integer currentStage) { - this.currentStage = currentStage; - } - - public Integer getTotalStage() { - return totalStage; - } - - public void setTotalStage(Integer totalStage) { - this.totalStage = totalStage; - } - - public Double getInterest() { - return interest; - } - - public void setInterest(Double interest) { - this.interest = interest; - } - - public Double getPrincipal() { - return principal; - } - - public void setPrincipal(Double principal) { - this.principal = principal; - } - - public Date getDeadline() { - return deadline; - } - - public void setDeadline(Date deadline) { - this.deadline = deadline; - } - - public Date getRepaymentDate() { - return repaymentDate; - } - - public void setRepaymentDate(Date repaymentDate) { - this.repaymentDate = repaymentDate; - } - - public Double getFrozen() { - return frozen; - } - - public void setFrozen(Double frozen) { - this.frozen = frozen; - } - - public Double getRate() { - return rate; - } - - public void setRate(Double rate) { - this.rate = rate; - } - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone; - } - - public String getLenderRealName() { - return lenderRealName; - } - - public void setLenderRealName(String lenderRealName) { - this.lenderRealName = lenderRealName; - } - - public String getLenderName() { - return lenderName; - } - - public void setLenderName(String lenderName) { - this.lenderName = lenderName; - } - - public Double getRecharge() { - return recharge; - } - - public void setRecharge(Double recharge) { - this.recharge = recharge; - } - - public Double getWithdraw() { - return withdraw; - } - - public void setWithdraw(Double withdraw) { - this.withdraw = withdraw; - } - - public String getErrorMessage() { - return errorMessage; - } - - public void setErrorMessage(String errorMessage) { - this.errorMessage = errorMessage; - } -} - diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderBillStageDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderBillStageDO.java deleted file mode 100644 index eb87da16f62ff0871079ba09abc585451af1a3f3..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderBillStageDO.java +++ /dev/null @@ -1,222 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.util.Date; - -/** - * Created by jenny on 6/2/15. - */ -public class LenderBillStageDO { - private Integer id; - private int studentId; - private int biddingId; - private int biddingItemId; - private int lenderId; - private String phone; - private int stage; - private int totalStage; - private Double amount; - private Double interest; //投资的总收益 - private Double principal; - private String studentName; - private String courseName; - private Date deadline; - private Date repaymentDate; - - private int overdueDays; - private Double overdueFee; - - //当期应还总金额 - private Double totalAmount; - //当期最迟还款时间 - private String repayDeadline; - - private int status; - private Date created; - private Date modified; - - public Integer getVersion() { - return version; - } - - public void setVersion(Integer version) { - this.version = version; - } - - private Integer version; - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public int getStudentId() { - return studentId; - } - - public void setStudentId(int studentId) { - this.studentId = studentId; - } - - public int getBiddingId() { - return biddingId; - } - - public void setBiddingId(int biddingId) { - this.biddingId = biddingId; - } - - public int getStage() { - return stage; - } - - public void setStage(int stage) { - this.stage = stage; - } - - public Date getDeadline() { - return deadline; - } - - public void setDeadline(Date deadline) { - this.deadline = deadline; - } - - public Date getRepaymentDate() { - return repaymentDate; - } - - public void setRepaymentDate(Date repaymentDate) { - this.repaymentDate = repaymentDate; - } - - public int getStatus() { - return status; - } - - public void setStatus(int status) { - this.status = status; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public Double getAmount() { - return amount; - } - - public void setAmount(Double amount) { - this.amount = amount; - } - - public Double getInterest() { - return interest; - } - - public void setInterest(Double interest) { - this.interest = interest; - } - - public Double getPrincipal() { - return principal; - } - - public void setPrincipal(Double principal) { - this.principal = principal; - } - - public int getTotalStage() { - return totalStage; - } - - public void setTotalStage(int totalStage) { - this.totalStage = totalStage; - } - - public String getCourseName() { - return courseName; - } - - public void setCourseName(String courseName) { - this.courseName = courseName; - } - - public String getStudentName() { - return studentName; - } - - public void setStudentName(String studentName) { - this.studentName = studentName; - } - - public Double getTotalAmount() { - return totalAmount; - } - - public void setTotalAmount(Double totalAmount) { - this.totalAmount = totalAmount; - } - - public String getRepayDeadline() { - return repayDeadline; - } - - public void setRepayDeadline(String repayDeadline) { - this.repayDeadline = repayDeadline; - } - - public int getLenderId() { - return lenderId; - } - - public void setLenderId(int lenderId) { - this.lenderId = lenderId; - } - - public int getOverdueDays() { - return overdueDays; - } - - public void setOverdueDays(int overdueDays) { - this.overdueDays = overdueDays; - } - - public Double getOverdueFee() { - return overdueFee; - } - - public void setOverdueFee(Double overdueFee) { - this.overdueFee = overdueFee; - } - - public int getBiddingItemId() { - return biddingItemId; - } - - public void setBiddingItemId(int biddingItemId) { - this.biddingItemId = biddingItemId; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderDO.java deleted file mode 100644 index 7111e752b1e9fe1b8f697d245cf075da1788c05c..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LenderDO.java +++ /dev/null @@ -1,159 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.util.Date; - -/** - * Created by jenny on 5/11/15. - */ -public class LenderDO { - - private Integer id; - - private String phone; - - private String password; - - private String name; //用户名 - - private String realName; //真实姓名 - - private String cardId; //身份证 - - private Integer effective; - - private Date loginTime; - - private Integer certified; //实名认证状态 - - private String created; - - private String modified; - - private Double balance; //不参与持久化 - - private Double balanceFrozen; //不参与持久化 - - private Double principal; //不参与持久化 - - private Integer biddingCount; //投资人持有项目数,不参与持久化 - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone; - } - - public String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getRealName() { - return realName; - } - - public void setRealName(String realName) { - this.realName = realName; - } - - public String getCardId() { - return cardId; - } - - public void setCardId(String cardId) { - this.cardId = cardId; - } - - public Integer getEffective() { - return effective; - } - - public void setEffective(Integer effective) { - this.effective = effective; - } - - public Date getLoginTime() { - return loginTime; - } - - public void setLoginTime(Date loginTime) { - this.loginTime = loginTime; - } - - public String getCreated() { - return created; - } - - public void setCreated(String created) { - this.created = created; - } - - public String getModified() { - return modified; - } - - public void setModified(String modified) { - this.modified = modified; - } - - public Integer getCertified() { - return certified; - } - - public void setCertified(Integer certified) { - this.certified = certified; - } - - public Double getBalance() { - return balance; - } - - public void setBalance(Double balance) { - this.balance = balance; - } - - public Double getBalanceFrozen() { - return balanceFrozen; - } - - public void setBalanceFrozen(Double balanceFrozen) { - this.balanceFrozen = balanceFrozen; - } - - public Double getPrincipal() { - return principal; - } - - public void setPrincipal(Double principal) { - this.principal = principal; - } - - public Integer getBiddingCount() { - return biddingCount; - } - - public void setBiddingCount(Integer biddingCount) { - this.biddingCount = biddingCount; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LinksDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LinksDO.java deleted file mode 100644 index 37e73f9d12061fd8ea566974432d2d7464d01e5e..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/LinksDO.java +++ /dev/null @@ -1,58 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -/** - * 友情链接 - * Created by Chengrui on 2015/7/15. - */ -public class LinksDO { - - private Integer id; - - private String name; - - private String link; - - private String created; - - private String modified; - - 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 String getLink() { - return link; - } - - public void setLink(String link) { - this.link = link; - } - - public String getCreated() { - return created; - } - - public void setCreated(String created) { - this.created = created; - } - - public String getModified() { - return modified; - } - - public void setModified(String modified) { - this.modified = modified; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/OrganizationDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/OrganizationDO.java deleted file mode 100644 index 9205229f18269f21857cb042993fcf31c7d6fe9e..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/OrganizationDO.java +++ /dev/null @@ -1,141 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; -import java.util.Date; - -/** - * Created by liuguanqing on 15/4/7. - * 机构用户信息 - */ -public class OrganizationDO implements Serializable { - - private Integer id; - - private String code; - - private int level; - - private String auditNote; - - private String email;//机构登陆邮箱 - - private String name;//机构名称 - - private String password; - - private int status;//参见OrganizationStatusEnum; - - private String bailPercentage; // 保证金比例 - - private Integer checkType; // 复检类型(频率) - - private Date created; - - private Date modified; - - private Date submitResourceDate; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getEmail() { - return email; - } - - public void setEmail(String email) { - this.email = email; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password; - } - - public int getStatus() { - return status; - } - - public void setStatus(int status) { - this.status = status; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public String getCode() { - return code; - } - - public void setCode(String code) { - this.code = code; - } - - public String getAuditNote() { - return auditNote; - } - - public void setAuditNote(String auditNote) { - this.auditNote = auditNote; - } - - public Date getSubmitResourceDate() { - return submitResourceDate; - } - - public void setSubmitResourceDate(Date submitResourceDate) { - this.submitResourceDate = submitResourceDate; - } - - public Integer getCheckType() { - return checkType; - } - - public void setCheckType(Integer checkType) { - this.checkType = checkType; - } - - public int getLevel() { - return level; - } - - public void setLevel(int level) { - this.level = level; - } - - public String getBailPercentage() { - return bailPercentage; - } - - public void setBailPercentage(String bailPercentage) { - this.bailPercentage = bailPercentage; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/UserDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/UserDO.java deleted file mode 100644 index bfdc799de9b83c54c8a826bb88c74a93029b1693..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/UserDO.java +++ /dev/null @@ -1,141 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; -import java.util.Date; -import java.util.Set; - -/** - * Created by liuguanqing on 15/4/2. - */ -public class UserDO implements Serializable { - - private Integer id; - - private String name; - - private Integer gender; - - private Integer organizationId;//如果是机构,此处为机构ID - - private Integer teacherId;//如果用户位教师,此处位教师ID - - private Integer adminId;//如果是管理员,此处位管理员ID - - private Integer studentId;//如果是学生,此处为学生ID; - - private int type; - - private Date created; - - private Date modified; - - private Set operations;//此用户允许的操作 - - private Date loginTime; - - private String phone; - - 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 int getType() { - return type; - } - - public void setType(int type) { - this.type = type; - } - - public Date getCreated() { - return created; - } - - public void setCreated(Date created) { - this.created = created; - } - - public Date getModified() { - return modified; - } - - public void setModified(Date modified) { - this.modified = modified; - } - - public Set getOperations() { - return operations; - } - - public void setOperations(Set operations) { - this.operations = operations; - } - - public Integer getOrganizationId() { - return organizationId; - } - - public void setOrganizationId(Integer organizationId) { - this.organizationId = organizationId; - } - - public Integer getTeacherId() { - return teacherId; - } - - public void setTeacherId(Integer teacherId) { - this.teacherId = teacherId; - } - - public Integer getAdminId() { - return adminId; - } - - public void setAdminId(Integer adminId) { - this.adminId = adminId; - } - - public Integer getStudentId() { - return studentId; - } - - public void setStudentId(Integer studentId) { - this.studentId = studentId; - } - - public Integer getGender() { - return gender; - } - - public void setGender(Integer gender) { - this.gender = gender; - } - - public Date getLoginTime() { - return loginTime; - } - - public void setLoginTime(Date loginTime) { - this.loginTime = loginTime; - } - - public String getPhone() { - return phone; - } - - public void setPhone(String phone) { - this.phone = phone; - } -} diff --git a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/YeepayCityDO.java b/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/YeepayCityDO.java deleted file mode 100644 index 47e30815d8c30e587b4e6c578793ddea1d115520..0000000000000000000000000000000000000000 --- a/whatsmars-mars001-domain/src/main/java/com/whatsmars/mars001/domain/pojo/YeepayCityDO.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.whatsmars.mars001.domain.pojo; - -import java.io.Serializable; - -/** - * Created by duanxiangchao on 2015/4/14. - * 易宝支付接口 省市国标 - */ -public class YeepayCityDO implements Serializable { - - private Integer id; //主键 - private String code; //编码 - private String pid; //父ID - private String name; //备注 - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getCode() { - return code; - } - - public void setCode(String code) { - this.code = code; - } - - public String getPid() { - return pid; - } - - public void setPid(String pid) { - this.pid = pid; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } -}