修改模板

This commit is contained in:
huangdeliang
2020-09-23 20:07:36 +08:00
parent da4155f00d
commit 3deb40bac9
12 changed files with 87 additions and 65 deletions

View File

@ -11,7 +11,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
* 销售订单对象 sys_order
*
* @author wonder
* @date 2020-09-22
* @date 2020-09-23
*/
public class SysOrder extends BaseEntity
{
@ -20,8 +20,7 @@ public class SysOrder extends BaseEntity
/** 编号 */
private Long orderId;
/** 用户ID */
@Excel(name = "用户ID")
/** 业务员 */
private Long userId;
/** 用户昵称 */
@ -37,8 +36,8 @@ public class SysOrder extends BaseEntity
@Excel(name = "成交日期", width = 30, dateFormat = "yyyy-MM-dd")
private Date saleTime;
/** 销售渠道ID */
@Excel(name = "销售渠道ID")
/** 销售渠道 */
@Excel(name = "销售渠道")
private Long channelId;
public void setOrderId(Long orderId)
@ -112,4 +111,4 @@ public class SysOrder extends BaseEntity
.append("remark", getRemark())
.toString();
}
}
}

View File

@ -7,7 +7,7 @@ import com.ruoyi.system.domain.SysOrder;
* 销售订单Mapper接口
*
* @author wonder
* @date 2020-09-22
* @date 2020-09-23
*/
public interface SysOrderMapper
{
@ -58,4 +58,4 @@ public interface SysOrderMapper
* @return 结果
*/
public int deleteSysOrderByIds(Long[] orderIds);
}
}

View File

@ -7,7 +7,7 @@ import com.ruoyi.system.domain.SysOrder;
* 销售订单Service接口
*
* @author wonder
* @date 2020-09-22
* @date 2020-09-23
*/
public interface ISysOrderService
{
@ -58,4 +58,4 @@ public interface ISysOrderService
* @return 结果
*/
public int deleteSysOrderById(Long orderId);
}
}

View File

@ -12,7 +12,7 @@ import com.ruoyi.system.service.ISysOrderService;
* 销售订单Service业务层处理
*
* @author wonder
* @date 2020-09-22
* @date 2020-09-23
*/
@Service
public class SysOrderServiceImpl implements ISysOrderService
@ -93,4 +93,4 @@ public class SysOrderServiceImpl implements ISysOrderService
{
return sysOrderMapper.deleteSysOrderById(orderId);
}
}
}