schangxiang@126.com
2025-09-18 ef0360bd1befc35cc5af197a92ce462bad3af50f
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
namespace wcftest.orm
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    public partial class Adjustment_Client_BatchList
    {
        [Key]
        public long AdjustmentList_Id { get; set; }
 
        public long Adjustment_Id { get; set; }
 
        public int? Client_Id { get; set; }
 
        [StringLength(50)]
        public string ClientCode { get; set; }
 
        [StringLength(500)]
        public string ClientShortName { get; set; }
 
        [Column(TypeName = "money")]
        public decimal? AdjustMoney { get; set; }
 
        public string Remark { get; set; }
 
        public string ExpandFields { get; set; }
 
        public virtual Adjustment_Client_Batch Adjustment_Client_Batch { get; set; }
    }
}