liaoxujun@qq.com
2023-08-10 217519732242a41d4421dd644e9c83ff9af2722a
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
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
namespace DocumentServiceAPI.Model.cyDocumentModel
{
    ///<summary>
    ///
    ///</summary>
    [SugarTable("Document_OtherCompanyTenderInfo")]
    public partial class Document_OtherCompanyTenderInfo
    {
           public Document_OtherCompanyTenderInfo(){
 
 
           }
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:False
           /// </summary>           
           public int ProjectId {get;set;}
 
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
           /// </summary>           
           public string CompanyName {get;set;}
 
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
           /// </summary>           
           public decimal? TenderPrice {get;set;}
 
    }
}