商品单位-仓库管理

This commit is contained in:
sxu 2025-05-26 17:12:13 +08:00
parent 336de40460
commit de18455d0c
2 changed files with 7 additions and 2 deletions

View File

@ -35,7 +35,7 @@ public class SupermarketInfo extends BaseEntity {
/** 管理员 */ /** 管理员 */
@Excel(name = "管理员") @Excel(name = "管理员")
@ApiModelProperty(value = "管理员") @ApiModelProperty(value = "管理员")
private Long manager; private String manager;
/** 联系电话 */ /** 联系电话 */
@Excel(name = "联系电话") @Excel(name = "联系电话")

View File

@ -31,7 +31,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectSupermarketInfoVo"> <sql id="selectSupermarketInfoVo">
select supermarket_id, supermarket_name, area_id, manager, contact_tel, warehouse_id, address, img_url, if_print_now, app_sale_mode, min_delivery_time, select_time_interval, delivery_cost, auto_verify_day, delivery_way, refund_limit_time, if_relate_drp, meal_code, if_enable_pay_code, pay_code_url, create_by, create_time, update_by, update_time from supermarket_info select supermarket_id, supermarket_name, area_id, manager, contact_tel,
warehouse_id, address, img_url, if_print_now, app_sale_mode,
min_delivery_time, select_time_interval, delivery_cost, auto_verify_day,
delivery_way, refund_limit_time, if_relate_drp, meal_code, if_enable_pay_code,
pay_code_url, create_by, create_time, update_by, update_time
from supermarket_info
</sql> </sql>
<select id="selectSupermarketInfoList" parameterType="com.bonus.canteen.core.supermarket.domain.SupermarketInfo" resultMap="SupermarketInfoResult"> <select id="selectSupermarketInfoList" parameterType="com.bonus.canteen.core.supermarket.domain.SupermarketInfo" resultMap="SupermarketInfoResult">