payne
2024-04-25 46af5a3a488e06c2eb4844a2dd72ad9ddcd7cdbd
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
52
53
54
55
56
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace YaKe.Les.Core
{
    /// <summary>
    /// AGV站点工位关系表
    /// </summary>
    [Table("les_agvsitestation")]
    [Comment("AGV站点工位关系表")]
    public class LesAgvsiteStation : DEntityBase
    {
        /// <summary>
        /// AGV站点Id
        /// </summary>
        [Comment("AGV站点Id")]
        [Required]
        [MaxLength(50)]
        public long SiteId{ get; set; }
 
        /// <summary>
        /// AGV站点Code
        /// </summary>
        [Comment("AGV站点Code")]
        [Required]
        [MaxLength(50)]
        public string SiteCode { get; set; }
 
        /// <summary>
        /// 工位Id
        /// </summary>
        [Comment("工位Id")]
        [Required]
        [MaxLength(50)]
        public long StationId { get; set; }
 
        /// <summary>
        /// 工位编码
        /// </summary>
        [Comment("工位编码")]
        [Required]
        [MaxLength(50)]
        public string StationCode { get; set; }
 
        /// <summary>
        /// AGV站点表
        /// </summary>
        public LesAgvsite LesAgvsite { get; set; }
 
        /// <summary>
        /// 工位表
        /// </summary>
        public LesStation LesStation { get; set; }
    }
}