OrderInfo.cs 895 Bytes
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Hh.Mes.POJO.WebEntity.api
{
    public class OrderInfo
    {
        [SugarColumn(Length = 50, IsNullable = true)]
        public string LineCode { get; set; }

        /// <summary>
        /// 直径
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "直径", IsNullable = true)]
        public string Diameter { get; set; }

        /// <summary>
        /// 壁厚
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "壁厚", IsNullable = true)]
        public string Thickness { get; set; }

        /// <summary>
        /// 壁厚
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "长度", IsNullable = true)]
        public int CutLength { get; set; }
    }
}