2024-12-21 21:57:24 +08:00

17 lines
620 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace asg_form.Controllers.idvrole
{
//帮我写一个存储角色的数据库表要有角色名称角色头像url角色全身图片角色的选择率选择的禁用率获胜次数
public class RoleDB
{
public int id { get; set; }
public string role_name { get; set; }
public string role_head { get; set; }
public string role_body { get; set; }
public int role_probability { get; set; }
public int role_disable { get; set; }
public int role_win { get; set; }
}
//帮我写一个刚刚那个角色数据库的增删改查类
}