合并冲突

plp
owen 3 years ago
parent 4dd2d80887
commit da8b2eab6d

@ -9,7 +9,7 @@ create table member_level
name varchar(30) default '' not null comment '', name varchar(30) default '' not null comment '',
experience int default 0 not null comment '', experience int default 0 not null comment '',
level int default 0 not null comment '', level int default 0 not null comment '',
discount tinyint default 100 not null comment '', discount_percent tinyint default 100 not null comment '',
icon varchar(255) default '' not null comment '', icon varchar(255) default '' not null comment '',
background_url varchar(255) default '' not null comment '', background_url varchar(255) default '' not null comment '',
status tinyint default 0 not null comment '', status tinyint default 0 not null comment '',
@ -28,7 +28,7 @@ create table member_level_record
user_id bigint default 0 not null comment '', user_id bigint default 0 not null comment '',
level_id bigint default 0 not null comment '', level_id bigint default 0 not null comment '',
level int default 0 not null comment '', level int default 0 not null comment '',
discount tinyint default 100 not null comment '', discount_percent tinyint default 100 not null comment '',
experience int default 0 not null comment '', experience int default 0 not null comment '',
user_experience int default 0 not null comment '', user_experience int default 0 not null comment '',
remark varchar(255) default '' not null comment '', remark varchar(255) default '' not null comment '',

@ -29,7 +29,7 @@ public interface MemberLevelRecordConvert {
if (from != null) { if (from != null) {
to.setLevelId(from.getId()); to.setLevelId(from.getId());
to.setLevel(from.getLevel()); to.setLevel(from.getLevel());
to.setDiscount(from.getDiscount()); to.setDiscountPercent(from.getDiscountPercent());
to.setExperience(from.getExperience()); to.setExperience(from.getExperience());
} }
return to; return to;

Loading…
Cancel
Save