企业Id 信息

This commit is contained in:
2025-12-29 10:08:25 +08:00
parent 5595a8009b
commit 5d7aaa2dca
3 changed files with 28 additions and 0 deletions

View File

@@ -285,4 +285,13 @@ public class ShopInfoEditDTO {
*/
private Integer isCountStick;
/**
* 企业id
*/
private String weworkId;
/**
* 企业接入链接
*/
private String weworkUrl;
}

View File

@@ -135,5 +135,13 @@ public class ShopConfig implements Serializable {
private String dingAppKey;
private String dingAppSecret;
/**
* 企业id
*/
private String weworkId;
/**
* 企业接入链接
*/
private String weworkUrl;
}

View File

@@ -363,4 +363,15 @@ public class ShopInfo implements Serializable {
*/
private BigDecimal amount;
/**
* 企业id
*/
@Column(ignore = true)
private String weworkId;
/**
* 企业接入链接
*/
@Column(ignore = true)
private String weworkUrl;
}