杨前锦
2025-06-11 e0d89637030791ce1e7dd46ca5fdec9979977960
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.SXJK.models
{
    [SugarTable("TN_TrayRelation")]
    internal class TrayRelation : BaseModel
    {
        public string S_DOWN_TRAY_CODE { get; set; } // 下层托盘码
        public string S_UP_TRAY_CODE { get; set; } // 上层托盘码
    }
}