username@email.com
2025-02-05 d86bc04d0b34f2b7d9ddbd30ee703b51d48876e8
cylsg/cylsg.Model/UserModel/UserWorker.cs
@@ -73,10 +73,17 @@
        public string Resume { get; set; }
        /// <summary>
        /// 提现余额
        /// 提现总额
        /// </summary>
        [SugarColumn(ColumnDescription = "提现余额", Length = 18, DecimalDigits = 2, IsNullable = true)]
        public decimal? TiXianYue { get; set; }
        [SugarColumn(ColumnDescription = "提现总额", Length = 18, DecimalDigits = 2, IsNullable = true)]
        public decimal? TiXianZonge { get; set; }
        /// <summary>
        /// 已提现金额
        /// </summary>
        [SugarColumn(ColumnDescription = "已提现金额", Length = 18, DecimalDigits = 2, IsNullable = true)]
        public decimal? YiTiXianJine { get; set; }
@@ -99,5 +106,11 @@
        [SugarColumn(ColumnDescription = "人脸库名称", IsNullable = true)]
        public string? IAIGroupName { get; set; }
        /// <summary>
        /// 性别    0代表未填写,1代表男性,2代表女性。
        /// </summary>
        [SugarColumn(ColumnDescription = "人脸库名称", IsNullable = true)]
        public long? Gender { get; set; } = 0;
    }
}