using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared { public enum UnionFlagEnum { /// /// 行内 /// SameBank = 1 , /// /// 跨行 /// OtherBank = 0 } }