using System; using System.Collections.Generic; using System.Text; namespace Core.StlMes.Client.Sale.SaleFundMgt.FundVariable { /// /// 常量, /// 包括各结算单位命名等都统一在这里定义 /// 如果需要增加新的结算单位,也需要在这里定义 /// public class FundConstVariable { /// /// 默认DAO名称 /// public static string DefaultDaoName = "TgDao"; // 新钢销售标记 public static string BalanceSubject_Xgxs = "XGXS000"; /// /// 北京公司标记 /// public static string BalanceSubject_BJgs= "BJGS0001"; /// /// 新钢销售结算单位名称 /// public static string BALANCESUBJECTNAME_XGXS = "111"; /// /// 北京公司 /// public static string BALANCESUBJECTNAME_BJGS = "1112"; /// /// 武汉公司 /// public static string BALANCESUBJECTNAME_WHGS = "333"; /// /// 长沙公司 /// public static string BALANCESUBJECTNAME_CSGS = "4444"; /// /// // 是否开启资金控制模式 /// public static Boolean isOpenFundControlMode = true; /// /// // 是否自动创建二级账户和三级账户 /// public static Boolean isCreateDefaultAccount = true; /// /// 资金的默认账户是否允许被删除 /// 默认是不允许删除的 /// public static Boolean isDefaultAccountCanBeDelete = false; /// /// 默认的二级账户名称 /// public static string defaultSecondLevelAccount = "A00000000001"; /// /// 默认的三级账户 /// public static string defaultPactLevelAccount = "B00000000001"; /// /// 默认连接地址 /// public static string defaultMainStringUrl = @"http://172.16.2.132:8091/PSSServer/remoting/HessianRemoting"; /// /// 资金使用类型,合同生效扣款,同SEL_FUND_PACT_FUNDUSEDETAIL.TRANS_TYPE /// public static string _transTypePactEffect = "合同生效扣款"; /// /// 资金使用类型,下车扣款 /// public static string _transTypePactDeliver = "下车"; /// /// 资金使用类型,装车 /// public static string _transTypePactLoad = "装车"; /// /// 资金使用类型,结算 /// public static string _transTypePactInvoice = "结算"; /// /// 删除用户和结算关系的业务定义 /// public static string BusinessTypeDeleteUserAndBalanceRelation = "删除用户关系"; /// /// 操作成功提示信息 /// public static string successMessageInfo = "操作成功"; /// /// 客户账户剩余资金为0时,是否需要从下级账户中去冲减 /// public static Boolean isUpdateCustAccountLeavemoneyToGreaterThanZero = true; } }