⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baoxian.cs

📁 .net 开发的基础框架
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using Sybase.DataWindow;
using HPIResource.HisForm;


namespace HPIResource.ShouFei
{
    /// <summary>
    /// 社会保险
    /// </summary>
    public class BAOXIAN:DataStore
    {
        /// <summary>
        /// 社会保险
        /// </summary>
        /// <param name="fs">申请单</param>
        public BAOXIAN(HForm[] fs )
        {
            ;
        }

        #region 属性
        /// <summary>
        /// 保险流水号
        /// </summary>
        public string TransNo
        {// 保险流水号
            get
            {
                if (this.RowCount == 0) return "NoData";
                return this.GetItemString(this.CurrentRow, "TransNo");
            }
            set
            {
                if (this.RowCount == 0) return;
                this.SetItemString(this.CurrentRow, "TransNo", value);
            }
        }
        /// <summary>
        /// 费用总额
        /// </summary>
        public double FYZE
        {// 费用总额
            get
            {
                if (this.RowCount == 0) return 0;
                return Convert.ToInt32(this.GetItemDouble(this.CurrentRow, "FYZE"));
            }
            set
            {
                if (this.RowCount == 0) return;
                this.SetItemDouble(this.CurrentRow, "FYZE", value);
            }
        }
        /// <summary>
        /// 现金支付
        /// </summary>
        public double XJZF
        {// 现金支付
            get
            {
                if (this.RowCount == 0) return 0;
                return Convert.ToInt32(this.GetItemDouble(this.CurrentRow, "XJZF"));
            }
            set
            {
                if (this.RowCount == 0) return;
                this.SetItemDouble(this.CurrentRow, "XJZF", value);
            }
        }
        /// <summary>
        /// 保险记帐
        /// </summary>
        public double BXJZ
        {// 保险支付
            get
            {
                if (this.RowCount == 0) return 0;
                return Convert.ToInt32(this.GetItemDouble(this.CurrentRow, "BXJZ"));
            }
            set
            {
                if (this.RowCount == 0) return;
                this.SetItemDouble(this.CurrentRow, "BXJZF", value);
            }
        }
        #endregion
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -