zhengyiming
2025-06-12 bc462334623650be0594a670f41d82254bcee8ad
packages/core/src/lifeRechargeConstants.ts
@@ -95,7 +95,7 @@
  export const IspCodeText = {
    [IspCode.yidong]: '中国移动',
    [IspCode.dianxin]: '中国电信',
    [IspCode.liantong]: '中国联通',
    // [IspCode.liantong]: '中国联通',
  };
  export enum ElectricType {
@@ -202,12 +202,27 @@
  export enum LifePayChannelConsultationFollowupStatus {
    /**未回访 */
    None = 0,
    None = 1,
    /**跟进中 */
    Ing = 1,
    Ing = 2,
    /**已拒绝 */
    Refuse = 1,
    Refuse = 3,
    /**已开通 */
    Open = 1,
    Open = 4,
  }
  export enum LifePayChannelAgentType {
    /**零售代理 */
    RetailAgent = 1,
    /**品牌代理 */
    BrandAgent = 2,
    /**区域代理 */
    AreaAgent = 3,
  }
  export const LifePayChannelAgentTypeText = {
    [LifePayChannelAgentType.RetailAgent]: '零售代理',
    [LifePayChannelAgentType.BrandAgent]: '品牌代理',
    [LifePayChannelAgentType.AreaAgent]: '区域代理',
  };
}