This commit is contained in:
雷欧(林平凡)
2025-08-08 10:48:16 +08:00
parent d7c08ce505
commit 4708323384
2 changed files with 44 additions and 1 deletions

View File

@@ -32,4 +32,15 @@ public class XbMessage {
@Column(name = "from_wxid", length = 100)
private String fromWxid;
}
@Size(max = 1024)
@Column(name = "first_line", length = 1024)
private String firstLine;
@Size(max = 1024)
@Column(name = "first_sku_name", length = 1024)
private String firstSkuName;
@Column(name = "first_price")
private Double firstPrice;
}