using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "code_fee_color", DisableSyncStructure = true)]
public partial class CodeFeeColor {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string ID { get; set; } = Guid.NewGuid().ToString().ToUpper();
///
/// 颜色
///
[JsonProperty, Column(DbType = "varchar(60)")]
public string COLOR { get; set; }
///
/// 费用状态
///
[JsonProperty, Column(DbType = "varchar(8)", IsNullable = false)]
public string FEESTATU { get; set; }
///
/// 是否允许修改
///
[JsonProperty]
public bool ISEDIT { get; set; } = false;
///
/// 序号
///
[JsonProperty]
public short SORTNO { get; set; }
}
}