|
|
|
@@ -3,7 +3,6 @@ package com.iformall.domain.po; |
|
|
|
import javax.persistence.Id; |
|
|
|
import javax.persistence.Table; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
@@ -12,9 +11,7 @@ import java.util.List; |
|
|
|
* @author gongbiao |
|
|
|
*/ |
|
|
|
@Table(name = "wx_brand") |
|
|
|
public class WxBrand implements Serializable { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
public class WxBrand extends BaseEntity{ |
|
|
|
@Id |
|
|
|
protected Long id; |
|
|
|
|
|
|
|
@@ -29,10 +26,7 @@ public class WxBrand implements Serializable { |
|
|
|
public void setId(Long id) { |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
public String getSortColumns() { |
|
|
|
return sortColumns; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public List<Long> getIds() { |
|
|
|
return ids; |
|
|
|
} |
|
|
|
|