schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace Admin.NET.Core
{
    [Comment("库存物料视图")]
    [Table("View_Materialstock_Material")]
    public class View_Materialstock_Material 
    {
 
 
        /// <summary>
        /// 物料名称
        /// </summary>
        [Comment("物料名称")]
        [Required]
        [MaxLength(50)]
        public string MaterialName { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        [Comment("物料编号")]
        [Required]
        [MaxLength(50)]
        public string MaterialNo { get; set; }
 
        /// <summary>
        /// 物料批次
        /// </summary>
        [Comment("物料批次")]
        [MaxLength(50)]
        public string MaterialBatch { get; set; }
 
        /// <summary>
        /// 物料类别;数据字典
        /// </summary>
        [Comment("物料类别")]
        public MaterialType MaterialType { get; set; }
 
        /// <summary>
        /// 实物库存数
        /// </summary>
        [Comment("实物库存数")]
        [Required]
        public decimal StockNumber { get; set; }
    }
}