|
|
|
@ -17,15 +17,11 @@ import org.hibernate.validator.constraints.NotEmpty; |
|
|
|
|
* 代码由工具生成 |
|
|
|
|
* |
|
|
|
|
**/ |
|
|
|
|
@Table(name="bs_order_outside") |
|
|
|
|
public class BsOrderOutside implements Serializable { |
|
|
|
|
/** |
|
|
|
|
* 主键 |
|
|
|
|
*/ |
|
|
|
|
@Id |
|
|
|
|
@GeneratedValue |
|
|
|
|
@GeneratedValue(generator = "JDBC") |
|
|
|
|
private Integer id; |
|
|
|
|
private Long id; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 登录平台code |
|
|
|
@ -84,11 +80,11 @@ public class BsOrderOutside implements Serializable { |
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
public Integer getId() { |
|
|
|
|
public Long getId() { |
|
|
|
|
return id; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setId(Integer id) { |
|
|
|
|
public void setId(Long id) { |
|
|
|
|
this.id = id; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|