username@email.com
2024-08-22 48c1ff4a312b814c2849e4566236d240364a8aba
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using cylsg.Core;
using cylsg.Core.Attributes;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace cylsg.Model.OrderModel
{
    /// <summary>
    /// 工人投递
    /// </summary>
    [Description("工人投递")]
    [CoderFirst]
    public class OrderBidding : BaseModel
    {
        /// <summary>
        /// 工人投递Id
        /// </summary>
        [SugarColumn(ColumnDescription = "工人投递Id", IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        /// <summary>
        /// 用户id
        /// </summary>
        [SugarColumn(ColumnDescription = "用户id")]
        public int WorkerUserId { get; set; }
 
        /// <summary>
        /// 招工id
        /// </summary>
        [SugarColumn(ColumnDescription = "招工id")]
        public int OrderId { get; set; }
 
 
        /// <summary>
        /// 是否选中
        /// </summary>
        [SugarColumn(ColumnDescription = "是否选中", IsNullable = true)]
        public bool? IsSelected { get; set; }
 
        /// <summary>
        /// 选中时间
        /// </summary>
        [SugarColumn(ColumnDescription = "选中时间", IsNullable = true)]
        public DateTime? Selectedtime { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnDescription = "备注", ColumnDataType = "nvarchar(250)", IsNullable = true)]
        public string Remark { get; set; }
 
        /// <summary>
        /// 工资总额
        /// </summary>
        [SugarColumn(ColumnDescription = "工资总额", Length = 18, DecimalDigits = 2, IsNullable = true)]
        public decimal? Salary { get; set; }
    }
}