调度补齐卖家姓名和电话
This commit is contained in:
@@ -17,11 +17,28 @@ public class HxrAdminProperties {
|
||||
private boolean enabled = true;
|
||||
|
||||
/**
|
||||
* 完整请求 URL(含查询串),与浏览器地址栏一致即可。
|
||||
* 订单列表基础 URL(含分页等通用查询串);各业务在代码中覆盖查询参数,或使用独立 URL 配置。
|
||||
*/
|
||||
private String orderSelectUrl =
|
||||
"https://hxrdhoutai.hxrdsm.cn/app/admin/order/select?page=1&limit=90";
|
||||
|
||||
/**
|
||||
* 未支付订单拉取 URL(含 {@code status=0} 等业务筛选),供 {@link LBAdminPullScheduler#pullOrdersForUnPay} 使用。
|
||||
*/
|
||||
private String orderSelectUnPayUrl =
|
||||
"https://hxrdhoutai.hxrdsm.cn/app/admin/order/select?page=1&limit=90&status=0";
|
||||
|
||||
/**
|
||||
* 已支付订单拉取 URL(含 {@code status=1}),供 {@link LBAdminPullScheduler#pullOrdersForUnPay} 使用。
|
||||
*/
|
||||
private String orderSelectPaidUrl =
|
||||
"https://hxrdhoutai.hxrdsm.cn/app/admin/order/select?page=1&limit=90&status=1";
|
||||
|
||||
/**
|
||||
* 定时将 hxrd 订单同步到 {@code lb_order_row} 时使用的租户 id;未配置时跳过订单状态同步。
|
||||
*/
|
||||
private String syncTenantId = "TENANT_ID_CST_2026";
|
||||
|
||||
/**
|
||||
* 请求头 Cookie 完整取值,例如 {@code PHPSID=xxxx}。非空时优先于 {@link #phpsid}。
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user