1
z8018
2025-04-16 1f361850d35ba47225951efbc49d592eea685cf8
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models.BasicInfo
{
    [SugarTable(nameof(Dt_Positions))]
    public class Dt_Positions : BaseEntity
    {
        public int Id { get; set; }
 
        public string StationCode { get; set; }
 
        public int PositionType { get; set; }
 
        public int PositionX { get; set; }
 
        public int PositionY { get; set; }
 
        public int PositionZ { get; set; }
 
        public int PositionR { get; set; }
 
        public string Remark { get; set; }
    }
}