wzp
2022-11-24 a5b2428bc6ebac0210e4c552f61e7c5e1f1c9134
web/Model/Model/GwSp.cs
@@ -39,11 +39,25 @@
        private int _TransferFlag;//携号转网设置。0启用,1停用
        public string Company { get; set; }  //公司名称
        public string ProductId { get; set; }  //产品ID
        public string ProductName { get; set; }  //产品名称
        public int BasicNum { get; set; }  //基本条数
        public int GivingNum { get; set; }  //赠送条数
        public int DelFlag { get; set; }  //删除标志:0-正常;2-逻辑删除
        public int IsAutoReturn { get; set; }  //是否自动返还: 0-否; 1-是.
        public int SubPackageNum { get; set; }  //分包条数: 表示后台数据分包数量,不能为0,否则没办法分包,默认4000个号码一个数据包,建议在2000至5000
        public int SingleSubmitMinRestrict { get; set; }  //短信单次提交最小限制:默认0表示不限制,启用限制后小于该提交条数的将被拒绝。
        public int IsDispalyPrice { get; set; }  //是否显示单价
        public int DeductionMode { get; set; }  //扣费方式
        public int IsSendAudit { get; set; }  //发送是否审核
        public int BelowNumAudit { get; set; }  //低于条数审核
        public int AboveNumAudit { get; set; }  //高于条数审核
        public int IsCumulativeAudit { get; set; }  //是否累计审核
        public int CumulativeAuditNum { get; set; }  //累计条数审核
        public int CumulativeAuditTime { get; set; }  //累计时间(小时)
        public int IsSyncChildSendAudit { get; set; }  //是否同步子账号(发送审核)
        public int Id
        {
@@ -119,6 +133,11 @@
            }
            set
            {
                if (value.Length >= 20)
                {
                    throw new ArgumentOutOfRangeException("密码超过长度限制!");
                }
                this._password = value;
            }
        }
@@ -413,7 +432,19 @@
        public int ForceSignFlag { get; set; }
        public string ForceSign { get; set; }
        private string _forceSign;
        public string ForceSign
        {
            get { return _forceSign; }
            set {
                if (value.Length >= 20)
                {
                    throw new ArgumentOutOfRangeException("长度超出限制!");
                }
                _forceSign = value;
            }
        }
        public int CombinationMode { get; set; }