111
cjs
4 天以前 7fda4aeb36beda46d767a78082573692e7b85651
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using HH.WCS.Mobox3.NFLZ.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.NFLZ
{
    [SugarTable("TN_RowComparsionTable")]
    public class RowComparsionTable : BaseModel
    {
        /// <summary>
        /// 林芝排号
        /// </summary>
        public string S_LJ_ROW { get; set; }
        /// <summary>
        /// 富勒排号
        /// </summary>
        public string S_FL_ROW { get; set; }
    }
}