微信接口开发

This commit is contained in:
huangdeliang
2021-05-13 20:01:15 +08:00
parent 2e8e6d7b8d
commit 735296b0f9
6 changed files with 125 additions and 1 deletions

View File

@ -20,7 +20,6 @@ public class SysWxUserInfo {
*/
private String openid;
@JsonIgnore
private Long cusId;
private String customerId;

View File

@ -0,0 +1,17 @@
package com.stdiet.custom.domain.wechat;
import lombok.Data;
import java.util.Date;
@Data
public class WxPostRecipesMessage {
String name;
Date startDate;
Date endDate;
String remark;
}