|
|
|
@@ -1,12 +1,11 @@ |
|
|
|
package com.simple.domain.po; |
|
|
|
|
|
|
|
import javax.persistence.*; |
|
|
|
import java.util.*; |
|
|
|
import java.math.*; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.util.List; |
|
|
|
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_msg") |
|
|
|
public class WxMsg implements Serializable { |
|
|
|
@@ -83,6 +82,10 @@ public class WxMsg implements Serializable { |
|
|
|
/*发送状态0未发送 1已发送 2草稿箱**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="发送状态0未发送 1已发送 2草稿箱",name="sendstatus") |
|
|
|
private Integer sendstatus; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="发送状态0未发送 1已发送 2草稿箱",name="excelpath") |
|
|
|
private String excelpath; |
|
|
|
|
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
} |
|
|
|
@@ -168,7 +171,13 @@ public class WxMsg implements Serializable { |
|
|
|
sendstatus = _sendstatus; |
|
|
|
} |
|
|
|
|
|
|
|
public String getExcelpath() { |
|
|
|
return excelpath; |
|
|
|
} |
|
|
|
|
|
|
|
public void setExcelpath(String excelpath) { |
|
|
|
this.excelpath = excelpath; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
|