|
|
|
@@ -0,0 +1,196 @@ |
|
|
|
package com.iformall.domain.po; |
|
|
|
|
|
|
|
import javax.persistence.Id; |
|
|
|
import javax.persistence.Table; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@Table(name = "wx_bill_action") |
|
|
|
public class WxBillAction implements Serializable { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
@Id |
|
|
|
protected Long id; |
|
|
|
|
|
|
|
@Transient |
|
|
|
protected List<Long> ids; |
|
|
|
@Transient |
|
|
|
protected String sortColumns; |
|
|
|
|
|
|
|
public Long getId() { |
|
|
|
return id; |
|
|
|
} |
|
|
|
|
|
|
|
public void setId(Long id) { |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
|
|
|
|
public String getSortColumns() { |
|
|
|
return sortColumns; |
|
|
|
} |
|
|
|
|
|
|
|
public List<Long> getIds() { |
|
|
|
return ids; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIds(List<Long> ids) { |
|
|
|
this.ids = ids; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "租户ID", name = "tenantId") |
|
|
|
private String tenantId; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "账单ID", name = "billId") |
|
|
|
private Long billId; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "用户ID", name = "userId") |
|
|
|
private Long userId; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "用户名称", name = "userName") |
|
|
|
private String userName; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "手机号", name = "phone") |
|
|
|
private String phone; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "动作", name = "action") |
|
|
|
private Integer action; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "描述", name = "details") |
|
|
|
private String details; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "创建时间", name = "createtime") |
|
|
|
private Date createtime; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "更新时间", name = "updatetime") |
|
|
|
private Date updatetime; |
|
|
|
|
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTenantId(String tenantId) { |
|
|
|
this.tenantId = tenantId; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getBillId() { |
|
|
|
return billId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBillId(Long billId) { |
|
|
|
this.billId = billId; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getUserId() { |
|
|
|
return userId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUserId(Long userId) { |
|
|
|
this.userId = userId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getUserName() { |
|
|
|
return userName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUserName(String userName) { |
|
|
|
this.userName = userName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPhone() { |
|
|
|
return phone; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPhone(String phone) { |
|
|
|
this.phone = phone; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getAction() { |
|
|
|
return action; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAction(Integer action) { |
|
|
|
this.action = action; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDetails() { |
|
|
|
return details; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDetails(String details) { |
|
|
|
this.details = details; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getCreatetime() { |
|
|
|
return createtime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCreatetime(Date createtime) { |
|
|
|
this.createtime = createtime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getUpdatetime() { |
|
|
|
return updatetime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUpdatetime(Date updatetime) { |
|
|
|
this.updatetime = updatetime; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field { |
|
|
|
Id_ASC("`id` ASC"), Id_DESC("`id` DESC"); |
|
|
|
private String value; |
|
|
|
|
|
|
|
Field(String value) { |
|
|
|
this.value = value; |
|
|
|
} |
|
|
|
|
|
|
|
public String getValue() { |
|
|
|
return value; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCol(String value) { |
|
|
|
this.value = value; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return this.getValue(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void setSortColumns(WxBillAction.Field... fields) { |
|
|
|
if (fields == null || fields.length == 0) { |
|
|
|
return; |
|
|
|
} |
|
|
|
for (int k = 0; k < fields.length; k++) { |
|
|
|
if (fields[k] == null) { |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
StringBuilder sb = new StringBuilder(fields[0].toString()); |
|
|
|
for (int k = 1; k < fields.length; k++) { |
|
|
|
sb.append(","); |
|
|
|
sb.append(fields[k].toString()); |
|
|
|
} |
|
|
|
this.sortColumns = sb.toString(); |
|
|
|
} |
|
|
|
|
|
|
|
public void setSortColumns(String sortColumns) { |
|
|
|
if (sortColumns == null || "".equals(sortColumns.trim())) { |
|
|
|
return; |
|
|
|
} |
|
|
|
if (sortColumns.contains(",")) { |
|
|
|
String[] cols = sortColumns.split(","); |
|
|
|
List<Field> fList = new java.util.ArrayList(); |
|
|
|
for (int k = 0; k < cols.length; k++) { |
|
|
|
fList.add(Field.valueOf(cols[k])); |
|
|
|
} |
|
|
|
this.setSortColumns(fList.toArray(new Field[fList.size()])); |
|
|
|
} else { |
|
|
|
this.setSortColumns(Field.valueOf(sortColumns)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |