stockformmodel.cs

来自「c#三层架构项目开发的全过程」· CS 代码 · 共 25 行

CS
25
字号
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Model.Stock
{
    public class StockFormModel
    {
        #region 采购单据信息
        public string stockform_id { get; set; }
        public string askemployee_ID { get; set; }
        public string roleemployee_ID { get; set; }
        public int stock_type_id { get; set; }
        public string stock_type_name { get; set; }
        public int stockform_totalnum { get; set; }
        public decimal stockform_tradeprice { get; set; }
        public string stockform_oktext { get; set; }
        public DateTime stockform_time { get; set; }
        public string emplooyid { get; set; }
      
        #endregion 
    }
}

⌨️ 快捷键说明

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