using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared; /// /// 钱包开户支付宝签约状态 /// public enum WalletAccountOpenAlipaySignStatusEnum { /// /// 已签约 /// NotSigned = 10, /// /// 未签约 /// Signed = 20 }