10 changed files with 157 additions and 139 deletions
@ -1,77 +1,39 @@ |
|||
|
|||
package com.ccsens.mt.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
public class CompeteCountScoreKey implements Serializable { |
|||
private Long id; |
|||
|
|||
private Integer shouldTimes; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Integer getShouldTimes() { |
|||
return shouldTimes; |
|||
} |
|||
|
|||
public void setShouldTimes(Integer shouldTimes) { |
|||
this.shouldTimes = shouldTimes; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", shouldTimes=").append(shouldTimes); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
|||
|
|||
|
|||
//public class CompeteCountScoreKey implements Serializable {
|
|||
// private Long id;
|
|||
//
|
|||
// private Integer shouldTimes;
|
|||
//
|
|||
// private static final long serialVersionUID = 1L;
|
|||
//
|
|||
// public Long getId() {
|
|||
// return id;
|
|||
// }
|
|||
//
|
|||
// public void setId(Long id) {
|
|||
// this.id = id;
|
|||
// }
|
|||
//
|
|||
// public Integer getShouldTimes() {
|
|||
// return shouldTimes;
|
|||
// }
|
|||
//
|
|||
// public void setShouldTimes(Integer shouldTimes) {
|
|||
// this.shouldTimes = shouldTimes;
|
|||
// }
|
|||
//
|
|||
// @Override
|
|||
// public String toString() {
|
|||
// StringBuilder sb = new StringBuilder();
|
|||
// sb.append(getClass().getSimpleName());
|
|||
// sb.append(" [");
|
|||
// sb.append("Hash = ").append(hashCode());
|
|||
// sb.append(", id=").append(id);
|
|||
// sb.append(", shouldTimes=").append(shouldTimes);
|
|||
// sb.append("]");
|
|||
// return sb.toString();
|
|||
// }
|
|||
//}
|
|||
package com.ccsens.mt.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
public class CompeteCountScoreKey implements Serializable { |
|||
private Long id; |
|||
|
|||
private Integer shouldTimes; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Integer getShouldTimes() { |
|||
return shouldTimes; |
|||
} |
|||
|
|||
public void setShouldTimes(Integer shouldTimes) { |
|||
this.shouldTimes = shouldTimes; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", shouldTimes=").append(shouldTimes); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -1,5 +1,5 @@ |
|||
spring: |
|||
profiles: |
|||
active: dev |
|||
include: common, util-dev |
|||
active: test |
|||
include: common, util-test |
|||
|
|||
|
@ -1,5 +1,5 @@ |
|||
spring: |
|||
profiles: |
|||
active: dev |
|||
include: util-dev,common |
|||
active: test |
|||
include: util-test,common |
|||
|
|||
|
Loading…
Reference in new issue