wxw
3 天以前 aea5b5b55049b7099466b3d235d8e04e55de2947
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.Entity.BllSoEntity
{
    /// <summary>
    /// 备料出库定时任务表
    /// </summary>
    [SugarTable("BllExportTimingTask")]
    public class BllExportTimingTask : BaseEntity
    {
        /// <summary>
        /// 出库单号
        /// </summary>
        public string SoNo { get; set; }
 
        /// <summary>
        /// 状态0:未执行  1:正在执行  2:执行完成 
        /// </summary>
        public int Status { get; set; }
 
    }
}